天天看点

Zabbix4.0 监控http状态码

以下是jenkins服务地址,我要监控下jenkins服务是否正常运行

Zabbix4.0 监控http状态码

创建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状态的监控项

Zabbix4.0 监控http状态码

添加对jenkins的监控项,键值为对应jenkins-status.conf中的jenkins-status

创建触发器

Zabbix4.0 监控http状态码

条件为jenkins监控项中的值大于或者小于200时报严重报警 image

创建显示图形

Zabbix4.0 监控http状态码

查看jenkins状态监控信息

Zabbix4.0 监控http状态码

可以从图中看出,状态码一直是200,可见jenkins是正常的 至此已完成zabbix对http状态码的监控