码迷,mamicode.com
首页 > 其他好文 > 详细

Nginx服务状态监控

时间:2017-02-24 15:29:57      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:waiting   环境   客户   wait   成功   连接数   sts   活跃   默认   

1. 启用nginx status配置

在默认主机里面加上location或者你希望能访问到的主机里面。
server {
listen *:80 default_server;
server_name _;
location /ngx_status
{
stub_status on;
access_log off;
#allow 127.0.0.1;
#deny all;
}
}


server {
listen *:80 default_server;
server_name _;
location /ngx_status
{
stub_status on;
access_log off;
#allow 127.0.0.1;
#deny all;
}
}

2. 重启nginx

请依照你的环境重启你的nginx
# service nginx restart
1

# service nginx restart

3. 打开status页面

# curl http://127.0.0.1/ngx_status
Active connections: 11921
server accepts handled requests
11989 11989 11991
Reading: 0 Writing: 7 Waiting: 42

# curl http://127.0.0.1/ngx_status
Active connections: 11921
server accepts handled requests
11989 11989 11991
Reading: 0 Writing: 7 Waiting: 42

4. nginx status详解

active connections – 活跃的连接数量
server accepts handled requests — 总共处理了11989个连接 , 成功创建11989次握手, 总共处理了11991个请求
reading — 读取客户端的连接数.
writing — 响应数据到客户端的数量
waiting — 开启 keep-alive 的情况下,这个值等于 active – (reading+writing), 意思就是 Nginx 已经处理完正在等候下一次请求指令的驻留连接.

Nginx服务状态监控

标签:waiting   环境   客户   wait   成功   连接数   sts   活跃   默认   

原文地址:http://www.cnblogs.com/littlewrong/p/6438327.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!