开启自定义监控
在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页面上创建监控项
创建触发器