You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by GitBox <gi...@apache.org> on 2022/11/16 11:25:44 UTC

[GitHub] [apisix] tzssangglass commented on issue #8243: help request: apisix_nginx_http_current_connections中wait的值存在疑问

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: notifications-unsubscribe@apisix.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org