以下是jenkins服务地址,我要监控下jenkins服务是否正常运行
在这里插入图片描述
创建jenkins-status.py脚本,监控http状态返回码

脚本如下

[root@localhost zabbix_agentd.d]# cat /etc/zabbix/zabbix_agentd.d/jenkins-status.py 
#!/bin/env python
# -*- coding: UTF-8 -*-
import requests
import sys
try:
	html = requests.get("http://192.168.1.118:8080/login")
	code = html.status_code
	print(code)
		
except:
    print(1)
    sys.exit(0)
[root@localhost zabbix_agentd.d]# 

执行脚本可以看到jenkins服务的状态返回码为200

[root@localhost zabbix_agentd.d]# ./jenkins-status.py 
200
[root@localhost zabbix_agentd.d]# 

添加zabbix-agent.d配置文件

[root@localhost zabbix_agentd.d]# cat jenkins-status.conf 
UserParameter=jenkins-status,/etc/zabbix/zabbix_agentd.d/jenkins-status.py
[root@localhost zabbix_agentd.d]# 

重启zabbix-agent

systemctl restart zabbix-agent

去zabbix-server端测试获取jenkins状态码

[root@localhost ~]# zabbix_get -s 192.168.1.118 -k jenkins-status
200
[root@localhost ~]# 

以上可以看到,在zabbix-server端能正常的获取jenkins状态码为200

创建监控项

去zabbix-server端 添加对jenkins状态的监控项
![image](F83A9848E2AC46819488879E15ADC649
添加对jenkins的监控项,键值为对应jenkins-status.conf中的jenkins-status

创建触发器

在这里插入图片描述
条件为jenkins监控项中的值大于或者小于200时报严重报警
在这里插入图片描述

创建显示图形

在这里插入图片描述

查看jenkins状态监控信息

在这里插入图片描述
可以从图中看出,状态码一直是200,可见jenkins是正常的
至此已完成zabbix对http状态码的监控

在这里插入图片描述

Logo

CSDN联合极客时间,共同打造面向开发者的精品内容学习社区,助力成长!

更多推荐