在被监控端安装一个nginx 这里是yum安装
yum -y install nginx
nginx的ngx_http_stub_status_module模块提供了基本的nginx状态信息,源码安装的话需要加上–with-http_stub_status_module编译参数,或者如果是epel源yum安装的话,已经默认启用该模块。在nginx.conf的server段中添加:
location /stub_status {
stub_status on;
access_log off;
allow 127.0.0.1;
deny all;
}
重启nginx服务
/usr/sbin/nginx -s reload
访问nginx
[root@671ff69acf99 nginx]# curl http://127.0.0.1/stub_status
Active connections: 1
server accepts handled requests
9421 9421 9421
Reading: 0 Writing: 1 Waiting: 0
--------------------------------------------------------------
Active connections:当前[活动]的连接数量。
Accepts:已经接受客户端的连接总数量。
Handled:已经处理客户端的连接总数量。
(一般与accepts一致,除非服务器限制了连接数量)。
Requests:客户端发送的请求数量。
Reading:当前服务器正在读取客户端请求头的数量。
Writing:当前服务器正在写响应信息的数量。
Waiting:当前多少客户端在等待服务器的响应。
编写脚本 这里我和nginx配置文件在一个目录下 一会自定义键值对方便找到
shell脚本
#! /bin/bash
HOST="127.0.0.1"
PORT="80"
ret=$( /usr/bin/curl "http://$HOST:$PORT/stub_status/" 2>/dev/null)
case $1 in
ping)
/sbin/pidof nginx |wc -l ;;
active)
echo "${ret}" | grep 'Active' | awk '{print $NF}';;
reading)
echo "${ret}" | grep 'Reading' | awk '{print $2}' ;;
writing)
echo "${ret}" | grep 'Writing' | awk '{print $4}';;
waiting)
echo "${ret}" | grep 'Waiting' | awk '{print $6}';;
accepts)
echo "${ret}" | awk NR==3 | awk '{print $1}';;
handled)
echo "${ret}" | awk NR==3 | awk '{print $2}';;
requests)
echo "${ret}" | awk NR==3 | awk '{print $3}';;
*)
echo 'ping|active|reading|writing|waiting|accepts|handled|requests' ;;
esac
这里使用的ping是要监测nginx服务是否正常需要下个包安装pidof
yum -y install sysvinit-tools-2.88-14.dsf.el7.x86_64
python脚本(python3 需要提前安装 yum就可以了)
import sys
import requests
import re
help_msg = """
usage:
{} [active,accepts,handled,requests,reading,writing,waiting]
""".format(sys.argv[0])
def usage():
print(help_msg)
if len(sys.argv) < 2:
usage()
try:
r = requests.get(url='http://127.0.0.1:80/stub_status/')
isAlive = r.status_code
except Exception as e:
print(e)
data = {}
lists = ["active", "accepts", "handled",
"requests", "reading", "writing", "waiting"]
num = 0
for text in re.findall('\d+', r.text):
data[lists[num]] = text
num += 1
for i in sys.argv[1:]:
if not i in lists:
usage()
exit()
for i in sys.argv[1:]:
print(data[i])
编写自定义键值 /etc/zabbix/zabbix_agentd.d/
### nginx
UserParameter=nginx.status[*], sh /etc/nginx/nginx.sh $1
UserParameter=nginx.statuspy[*], python3 /etc/nginx/nginx.py $1
pkill zabbix_agent #进程kill掉重启这个服务、让agent来读取这个配置文件
在zabbix_server端测试
input: bash-5.0# zabbix_get -s 172.20.0.4 -p 10050 -k "nginx.status[active]"
output: 1
in: zabbix_get -s 172.20.0.4 -p 10050 -k "nginx.statuspy[active]"
out: 1
报错解决:
在zabbix_client端
yum install python3
pip3 install requests
接下来就可以使用web端进行看结果了
这里我新建了一个主机来专门监测nginx服务
image这里是导入一个zabbx监控nginx的模板
image导入之后绑定主机
image.png
模板位置 网盘链接:链接: https://pan.baidu.com/s/1_AcUsqYpwhpQ8ZkWyKnlAQ 提取码: eqru
image.png image上图是使用的模板创建的 使用自定义创建键值也和上图中的键值一样的
查看监测最新数据
image最终的结果图
image
网友评论