安装,编译安装的时候要添加 --with-http_stub_status_module 模块,如下图
配置请求的URL,并开启 stub_status ,如下图:
配置好之后,就重启Nginx
/etc/init.d/nginx reload
测试请求:
返回结果分析
Active connections: 2 server accepts handled requests 27 27 23 Reading: 0 Writing: 1 Waiting: 1
Active connections : 表示活跃的链接数
server accepts handled requests
27 27 23
server : 表示启动时到现在已经处理的链接数
accepts: 表示启动成功后,共计成功的链接数
handled requests : 表示总计处理的请求数
Reading: 0 Writing: 1 Waiting: 1
Reading : 读取到客户端的 Header 信息数
Writing : 返回给客户端 Header 信息数
Writing : 已经处理完正在等候下一次请求指令的驻留链接
(开启keep-alive的情况下,这个值等于 Active - (Reading+Writing))
Shell 监控脚本
#!/bin/bash
HOST="127.0.0.1"
PORT="80"
# 检测nginx进程数量是否存在
function ping() {
/sbin/pidof nginx | wc -l
}
# 检测nginx性能
function active() {
/usr/bin/curl "http://$HOST:$PORT/ngx_status/" 2>/dev/null | grep 'Active' | awk '{print $NF}'
}
function reading() {
/usr/bin/curl "http://$HOST:$PORT/ngx_status/" 2>/dev/null| grep 'Reading' | awk '{print $2}'
}
function writing() {
/usr/bin/curl "http://$HOST:$PORT/ngx_status/" 2>/dev/null| grep 'Writing' | awk '{print $4}'
}
function waiting() {
/usr/bin/curl "http://$HOST:$PORT/ngx_status/" 2>/dev/null| grep 'Waiting' | awk '{print $6}'
}
function accepts() {
/usr/bin/curl "http://$HOST:$PORT/ngx_status/" 2>/dev/null| awk NR==3 | awk '{print $1}'
}
function handled() {
/usr/bin/curl "http://$HOST:$PORT/ngx_status/" 2>/dev/null| awk NR==3 | awk '{print $2}'
}
function requests(){
/usr/bin/curl "http://$HOST:$PORT/ngx_status/" 2>/dev/null| awk NR==3 | awk '{print $3}'
}
# 执行function
$1