[quote]
Active connections: 145
server accepts handled requests
36380 36380 38382
Reading: 6 Writing: 5 Waiting: 134
[/quote]
[quote]
active connections -- number of all open connections including connections to backends
server accepts handled requests -- nginx accepted 16630948 connections, handled 16630948 connections (no one was closed just it was accepted), and handles 31070465 requests (1.8 requests per connection)
reading -- nginx reads request header
writing -- nginx reads request body, processes request, or writes response to a client
waiting -- keep-alive connections, actually it is active - (reading + writing)
[/quote]
Active connections: 145
server accepts handled requests
36380 36380 38382
Reading: 6 Writing: 5 Waiting: 134
[/quote]
[quote]
active connections -- number of all open connections including connections to backends
server accepts handled requests -- nginx accepted 16630948 connections, handled 16630948 connections (no one was closed just it was accepted), and handles 31070465 requests (1.8 requests per connection)
reading -- nginx reads request header
writing -- nginx reads request body, processes request, or writes response to a client
waiting -- keep-alive connections, actually it is active - (reading + writing)
[/quote]
本文解析了Nginx服务器的连接状态数据,包括活动连接数、已接受和处理的请求等关键指标,并解释了Reading、Writing及Waiting的具体含义。
1849

被折叠的 条评论
为什么被折叠?



