Zabbix监控Nginx性能状态
Nginx在生产环境中的应用越来越广泛,所以需要对nginx的性能状态做一些监控,从而发现故障隐患,Ngnx的监控指标可分为:基本活动指标,错误指标,性能指标。
需要使用zabbix监控nginx,首先nginx需要配置ngx_status,如果开启请看小柒博客之前的文章《Nginx服务器启用status状态页面》
监控Nginx思路:
1)首先,要想监控Nginx,需要状态模块的支持,也就是-with-http_stub_status_module;随后在nginx.conf配置开启status状态
2)通过awk取status的各个状态数值
3)自定义模板将取值status的状态写成脚本,放在UserParmeter后面,最后通过zabbix_get测试Agent端是否得到状态值
Active connections Nginx正处理的活动链接数个数;重要
server Nginx启动到现在共处理了多少个连接。
accepts Nginx启动到现在共成功创建几次握手。
handled requests Nginx总共处理了几次请求。
Reading Nginx读取到客户端的 Header 信息数。
Writing Nginx返回给客户端的 Header 信息数。
Waiting Nginx已经处理完正在等候下一次请求指令的驻留链接,开启 Keep-alive的情况下,Waiting这个值等于active-(reading writing)。 请求丢失数=(握手数-连接数)可以看出,本次状态显示没有丢失请求。
Zabbix客户端配置
1、自定义KEY值
#编辑配置zabbix_agentd配置文件,添加以下内容
[root@localhost ~]# vim /usr/local/zabbix/etc/zabbix_agentd.conf
代码语言:javascript复制UserParameter=nginx.status[*],/data/scripts/auto_detection_nginx_state.sh $1
#保存退出
2、重启Zabbix_agentd服务
[root@localhost ~]# service zabbix_agentd restart
3、下载脚本文件(获取监控值)
[root@localhost ~]# cd /data/scripts
[root@localhost scripts]# wget -c https://mirrors.yangxingzhen.com/shell/auto_detection_nginx_state.sh
[root@localhost scripts]# cat auto_detection_nginx_state.sh
#脚本内容如下
代码语言:javascript复制#!/bin/bash#Date:2018-5-20 14:08:55#Author Blog:# https://www.yangxingzhen.com#Author WeChat:# 微信公众号:小柒博客#Author mirrors site:# https://mirrors.yangxingzhen.com#About the Author# BY:YangXingZhen# Mail:xingzhen.yang@yangxingzhen.com#About the Author# BY:、、、小柒# QQ:675583110# Mail:675583110@qq.com#Zabbix监控Nginx性能以及进程状态 HOST='www.yangxingzhen.com' if [ $# -eq 0 ];then echo -e "