天天看点

nginx-status详解

访问本机(开启了keep-alive)nginx status页面,如curl  127.0.0.1/server-status  输出

Active connections: 6713

server accepts handled requests

Reading: 1371 Writing: 155 Waiting: 5187

Active connections:表示活动的连接数量,包括keepalive中的

server 接受了18129393687个连接,处理了18129393687个连接,处理了48317368737个请求

reading: nginx读到请求的头数量(即时)

writing: nginx处理请求头,写请求body给client

waiting:keep-alive连接中的数量,等于active-(reading+writing)

本文转自 hb_fukua 51CTO博客,原文链接:http://blog.51cto.com/2804976/1205645

继续阅读