| waiting | the current number of idle client connections waiting for a request |
| accepted | the total number of accepted client connections |
| writing | the current number of connections where APISIX is writing the response back to the client |
| handled | the total number of handled connections. Generally, the parameter value is the same as accepted unless some resource limits have been reached |
| active | the current number of active client connections including waiting connections |
| reading | the current number of connections where APISIX is reading the request header |
| id | APISIX's uid which is saved in apisix/conf/apisix.uid |
## Disable Plugin
1. You can delete `node-status` in the plugin list of the configuration file `apisix/conf/config.yaml`,
then you can not add this plugin in any route.
```
plugins: # plugin list
- example-plugin
- limit-req
- jwt-auth
- zipkin
......
```
2. When you want to disable the `node-status` plugin in the route, it is very simple,
you can delete the corresponding json configuration in the plugin configuration,
no need to restart the service, it will take effect immediately.