zabbix自定义监控nginx状态页面

本文档详细介绍了如何在Nginx服务器上配置Zabbix_agent,通过编写监控脚本来监视Nginx的Waiting值,并在Zabbix web界面进行配置,实现对Nginx状态的实时监控。主要步骤包括:安装和配置Zabbix_agent,创建监控脚本,调整配置文件,以及在Zabbix服务端测试监控功能。此外,还提到了关闭防火墙和SELinux的必要性。
摘要由CSDN通过智能技术生成

1.环境

主机名IP安装的服务
zabbix192.168.216.188zabbix-server zabbix-agentd
nginx192.168.216.215nginx zabbix-agentd

2.确保nginx状态界面打开

[root@nginx ~]# nginx -V
nginx version: nginx/1.20.1
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-44) (GCC) 
built with OpenSSL 1.0.2k-fips  26 Jan 2017
TLS SNI support enabled
configure arguments: --prefix=/usr/local/nginx --user=nginx --group=nginx --with-debug --with-http_ssl_module --with-http_realip_module --with-http_image_filter_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_stub_status_module --http-log-path=/var/log/nginx/access.log --error-log-path=/var/log/nginx/error.log
// --with-http_stub_status_module为状态界面的模块

修改配置文件见往期文章点此

确保能看到这个页面

3. 在nginx端编写脚本来监控nginx端的状态页面

//这里选择监控Waiting的值
[root@nginx ~]# curl -s 192.168.216.215/status |awk 'NR==4'|awk -F: {'print $4'}
 0 

3.1 配置从机上的zabbix_agent

//安装zabbix_agent
[root@nginx ~]# yum -y install gcc gcc-c++ bzip2 pcre* make wget
[root@nginx ~]# wget https://cdn.zabbix.com/zabbix/sources/stable/5.4/zabbix-5.4.6.tar.gz

[root@nginx ~]# yum -y install gcc gcc-c++ bzip2 pcre* make wget
[root@nginx ~]# wget https://cdn.zabbix.com/zabbix/sources/stable/5.4/zabbix-5.4.6.tar.gz
[root@nginx ~]# tar xf zabbix-5.4.6.tar.gz 
[root@nginx ~]# useradd -r -M -s /sbin/nologin zabbix
[root@nginx ~]# chown zabbix.zabbix zabbix-5.4.6
[root@nginx ~]# cd zabbix-5.4.6/
[root@nginx zabbix-5.4.6]# ./configure --enable-agent
[root@nginx zabbix-5.4.6]# make install

//修改配置文件
[root@nginx ~]# vim /usr/local/etc/zabbix_agentd.conf
······
Server=192.168.216.188	#修改成zabbix服务端IP
······
ServerActive=192.168.216.188 #修改成zabbix服务端IP
······
Hostname=nginx  #主机名

UnsafeUserParameters=1    //添加这行
UserParameter=status,/scripts/status.sh //添加这行指明脚本位置 

//编写监控脚本
[root@nginx ~]# mkdir /scripts
[root@nginx ~]# cd /scripts/
[root@nginx scripts]# vim status.sh 
[root@nginx scripts]# chmod +x status.sh 
[root@nginx scripts]# cat status.sh 
#!/bin/bash

status=$(curl -s 192.168.216.215/status |awk 'NR==4'|awk -F: {'print $4'})

if [ $status -ge 1 ];then
    echo "1"     //如果驻留连接大于等于1就触发报警
else
    echo "0"
fi
//开启zabbix
[root@nginx ~]# zabbix_agentd 
[root@nginx ~]# ss -antl
State      Recv-Q Send-Q                                                   Local Address:Port                                                                  Peer Address:Port              
LISTEN     0      128                                                                  *:10050                                                                            *:*                  
LISTEN     0      128                                                                  *:80                                                                               *:*                  
LISTEN     0      128                                                                  *:22                                                                               *:*                  
LISTEN     0      100                                                          127.0.0.1:25                                                                               *:*                  
LISTEN     0      128                                                                  *:443                                                                              *:*                  
LISTEN     0      128                                                                 :::22                                                                              :::*                  
LISTEN     0      100                                                                ::1:25                                                                              :::*    

//zabbix端测试是否有问题  
[root@zabbix ~]# zabbix_get -s 192.168.216.215 -k status   
0
//去网页访问,出现变化
[root@zabbix ~]# zabbix_get -s 192.168.216.215 -k status   
1

3.2 关闭两端的防火墙和selinux

4. web界面配置






同样的办法添加触发器


访问nginx端手动触发

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值