检查with-http_stub_status_module有没有安装
<a href="https://s3.51cto.com/wyfs02/M00/8C/DE/wKioL1h8cvvR8keIAABgUq9THi0586.png" target="_blank"></a>
nginx status 开启方法:
在nginx配置文件中:
<a href="https://s5.51cto.com/wyfs02/M02/8C/E2/wKiom1h8fHHQ6rr-AAD2Fds9cdE308.png" target="_blank"></a>
启动nginx
用curl做测试
<a href="https://s4.51cto.com/wyfs02/M00/8C/E2/wKiom1h8fSnQRYPZAAAaJ697uFo635.png" target="_blank"></a>
状态页面各项数据的意义:
active connections – 当前 Nginx 正处理的活动连接数。
serveraccepts handled requests — 总共处理了 233851 个连接 , 成功创建 233851 次握手 (证明中间没有失败的 ), 总共处理了 687942 个请求 ( 平均每次握手处理了 2.94 个数据请求 )。
reading — nginx 读取到客户端的 Header 信息数。
writing — nginx 返回给客户端的 Header 信息数。
waiting — 开启 keep-alive 的情况下,这个值等于 active – (reading + writing), 意思就是 Nginx 已经处理完正在等候下一次请求指令的驻留连接。
有3个步骤,首先是编写获取Nginx信息脚本,接着配置中增加key信息,然后重启agent 服务。
①编写Nginx监控脚本,记住路径,后面配置需要用到,注意脚本权限问题,agent运行用户要能执行。
mkidr -p /usr/local/zabbix-agent/scripts/
cd /usr/local/zabbix-agent/scripts
vi nginx-check.sh
#!/bin/bash
##################################
# Zabbix monitoring script
#
# nginx:
# - anything available via nginx stub-status module
# Contact:
# Zabbix requested parameter
ZBX_REQ_DATA="$1"
ZBX_REQ_DATA_URL="$2"
# Nginx defaults
WGET_BIN="/usr/bin/wget"
# Error handling:
# - need to be displayable in Zabbix (avoid NOT_SUPPORTED)
# - items need to be of type "float" (allow negative + float)
ERROR_NO_ACCESS_FILE="-0.9900"
ERROR_NO_ACCESS="-0.9901"
ERROR_WRONG_PARAM="-0.9902"
ERROR_DATA="-0.9903" # either can not connect / bad host / bad port
# Handle host and port if non-default
if [ ! -z "$ZBX_REQ_DATA_URL" ]; then
URL="$ZBX_REQ_DATA_URL"
else
URL="$NGINX_STATUS_DEFAULT_URL"
fi
# save the nginx stats in a variable for future parsing
NGINX_STATS=$($WGET_BIN -q $URL -O - 2> /dev/null)
# error during retrieve
if [ $? -ne 0 -o -z "$NGINX_STATS" ]; then
echo $ERROR_DATA
exit 1
# Extract data from nginx stats
case $ZBX_REQ_DATA in
active_connections) echo "$NGINX_STATS" | head -1 | cut -f3 -d' ';;
accepted_connections) echo "$NGINX_STATS" | grep -Ev '[a-zA-Z]' | cut -f2 -d' ';;
handled_connections) echo "$NGINX_STATS" | grep -Ev '[a-zA-Z]' | cut -f3 -d' ';;
handled_requests) echo "$NGINX_STATS" | grep -Ev '[a-zA-Z]' | cut -f4 -d' ';;
reading) echo "$NGINX_STATS" | tail -1 | cut -f2 -d' ';;
writing) echo "$NGINX_STATS" | tail -1 | cut -f4 -d' ';;
waiting) echo "$NGINX_STATS" | tail -1 | cut -f6 -d' ';;
*) echo $ERROR_WRONG_PARAM; exit 1;;
esac
exit 0
~
agent的配置文件 /etc/zabbix/zabbix_agentd.conf 中定义了其他key的包含目录 Include=/etc/zabbix/zabbix_agentd.d/, 如果没有这个配置请自己添加下。接着在 /etc/zabbix/zabbix_agentd.d/ 目录新建一个文件 nginx-params.conf, 内容如下
<a href="https://s1.51cto.com/wyfs02/M02/8C/E5/wKiom1h8z9WwLL6xAAAXOfk__Cc418.png" target="_blank"></a>
加入以下内容:
UserParameter=nginx[*],/usr/local/zabbix-agent/scripts/nginx-check.sh "$1"
<a href="https://s2.51cto.com/wyfs02/M00/8C/E5/wKiom1h80DWA0XIaAAA4IBYZf84597.png" target="_blank"></a>
/etc/init.d/zabbix-agent restart
<a href="https://s1.51cto.com/wyfs02/M02/8C/E5/wKiom1h80HaQnx4YAAApv5OCBgM505.png" target="_blank"></a>
<a href="https://s5.51cto.com/wyfs02/M02/8C/E1/wKioL1h80K2TKzzxAAG-B-dQB24054.png" target="_blank"></a>
在新建的主机--选择该模板。
<a href="https://s4.51cto.com/wyfs02/M00/8C/E1/wKioL1h80VLDGlP7AAErgBsPU3g887.png" target="_blank"></a>
本文转自 15816815732 51CTO博客,原文链接:http://blog.51cto.com/68686789/1892414