zabbix自定义监控

本文详细介绍了如何在Zabbix中开启自定义监控,包括自定义监控进程和日志文件的监控,以及MySQL主从状态和延迟的监控。在Zabbix客户端配置文件中启用自定义监控功能,编写并测试相关脚本,创建监控项和触发器,最后通过验证确保监控正常工作。
摘要由CSDN通过智能技术生成

开启自定义监控

在zabbix客户端上,改配置文件修改自定义监控的功能打开

[root@czh ~]# vim /usr/local/etc/zabbix_agentd.conf
UnsafeUserParameters=1   //0表示这个功能没有打开,1表示打开了


[root@czh1 /]# vim /usr/local/etc/zabbix_agentd.conf
UnsafeUserParameters=1   

创建脚本的存放路径

[root@czh ~]# mkdir /scripts

自定义监控进程

编写查看进程的脚本

[root@czh1 /]# vim /scripts/check_process.sh
[root@czh1 /]# cat /scripts/check_process.sh 
#!bin/bash

process_status=$(ps -elf |grep -Ev "grep|$0" | grep -c $1)
if [ $process_status!=0 ];then
        echo '1'
else
        echo '0'
fi


//给一个执行权限
[root@czh1 /]# chmod +x /scripts/check_process.sh 
[root@czh1 /]# ll /scripts/
总用量 4
-rwxr-xr-x. 1 root root 131 5月  19 12:20 check_process.sh

测试zabbix用户能否使用这个脚本
[root@czh1 /]# su - zabbix -s /bin/bash
[zabbix@czh1 /]$ /scripts/check_process.sh httpd
1
[zabbix@czh1 /]$ exit
注销
[root@czh1 /]# systemctl stop httpd
[root@czh1 /]# /scripts/check_process.sh httpd
0

在zabbix被监控端写入自定义简历在服务端测试能不能使用

客户端

[root@czh ~]# vim /usr/local/etc/zabbix_agentd.conf
UserParameter=check_process[*],/bin/bash /scripts/check_process.sh $1

重启
[root@czh ~]# pkill zabbix
[root@czh ~]# ss -antl
State    Recv-Q   Send-Q     Local Address:Port      Peer Address:Port   Process   
LISTEN   0        128              0.0.0.0:22             0.0.0.0:*                
LISTEN   0        100            127.0.0.1:25             0.0.0.0:*                
LISTEN   0        80                     *:3306                 *:*                
LISTEN   0        128                 [::]:22                [::]:*                
LISTEN   0        100                [::1]:25                [::]:*                
[root@czh ~]# zabbix_agentd 
[root@czh ~]# ss -antl
State    Recv-Q   Send-Q     Local Address:Port      Peer Address:Port   Process   
LISTEN   0        128              0.0.0.0:22             0.0.0.0:*                
LISTEN   0        100            127.0.0.1:25             0.0.0.0:*                
LISTEN   0        128              0.0.0.0:10050          0.0.0.0:*                
LISTEN   0        80                     *:3306                 *:*                
LISTEN   0        128                 [::]:22                [::]:*                
LISTEN   0        100                [::1]:25                [::]:*    



服务端
[root@czh ~]# zabbix_get -s 192.168.31.138 -k check_process['httpd']
0

在zabbix页面上创建监控项

创建触发器

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值