tzssangglass commented on issue #8243: URL: https://github.com/apache/apisix/issues/8243#issuecomment-1316841918
> 那我还是没太明白,这些wait,write和active的关系是什么? This data comes from Nginx's stub_status module, read more: http://nginx.org/en/docs/http/ngx_http_stub_status_module.html ``` Active connections The current number of active client connections including Waiting connections. Writing The current number of connections where nginx is writing the response back to the client. Waiting The current number of idle client connections waiting for a request. ``` If you enabled keep-alive, `Waiting` is equal to `Active` - (reading+writing), this value depends on keepalive-timeout. In APISIX, keep-alive is enable by default. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
