nginx开启status模块

描述

Nginx本身内建有一个简单的即时状态显示模块 stub_status,只要开启 stub_status 模块就以看到基本的Web服务器状态统计,其提供的信息包含:目前连线数统计、请求数量统计等等

安装

status模块默认不开启,需要编译时加入–with-http_stub_status_module。
brew中默认nginx包不包含status模块,在网上找到一个带有大量编译模块的nginx包nginx-full

1
2
3
4
5
6
7
8
#使用nginx-full Formula
brew tap homebrew/nginx
#查看包安装选项 可以发现包含大量可编译模块
brew options nginx-full
#安装时添加status模块
brew install nginx-full --with-status

创建location规则

1
2
3
4
5
6
7
8
9
server{
location /nginx-status {
allow --------
allow --------//允许的ip
deny all;//
stub_status on;
access_log off;
}
}

这时通过domain.com/nginx-status就可以访问到状态页面

状态详解

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