zabbix实现微信告警配置
zabbix设置微信报警的配置过程
zabbix的报警方式有很多,在这里我们来详细说明一下如何通过微信报警
微信企业号的申请
注册的地址
这样企业就注册完成了我们来创建用户和应用
创建应用
到这里为止我们在企业微信上的操作基本就已经结束了,此时我们应该去zabbix下配置脚本
[root@koby ~]# cd /usr/local/zabbix-3.4.4/ [root@koby zabbix-3.4.4]# mkdir scripts && chown -r zabbix.zabbix scripts [root@koby zabbix-3.4.4]# vim conf/zabbix_server.conf [root@koby zabbix-3.4.4]# vim conf/zabbix_server.conf alertscriptspath=/usr/local/zabbix-3.4.4/scripts #把里面的alertscriptspath改成相对应的路径
- 1
- 2
- 3
- 4
- 5
- 6
我们配置微信脚本 首先我们需要调用微信接口
调用微信接口需要一个调用接口的凭证:access_token
通过:gropid,secret才能获取到access_token,但是获取到的token有效期为两分钟
微信企业号接口调试工具地址:
打开上面的url,使用上面monitops企业号的monit-manager管理组的corpid和secret号获得调用接口凭证access_token,如下在这里我们看到需要两个值这两个值分别在
[root@koby /data/tar]# wget https://pypi.python.org/packages/f0/07/26b519e6ebb03c2a74989f7571e6ae6b82e9d7d81b8de6fcdbfc643c7b58/simplejson-3.8.2.tar.gz [root@koby /data/tar]# tar -zxvf simplejson-3.8.2.tar.gz [root@koby simplejson-3.8.2]# python setup.py build [root@koby simplejson-3.8.2]# python setup.py install [root@koby scripts]# cat weixin.py #!/usr/bin/python #_*_coding:utf-8 _*_ import urllib,urllib2 import json import sys import simplejson reload(sys) sys.setdefaultencoding('utf-8') def gettoken(corpid,corpsecret): gettoken_url = 'https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid=' + corpid + '&corpsecret=' + corpsecret print gettoken_url try: token_file = urllib2.urlopen(gettoken_url) except urllib2.httperror as e: print e.code print e.read().decode("utf8") sys.exit() token_data = token_file.read().decode('utf-8') token_json = json.loads(token_data) token_json.keys() token = token_json['access_token'] return token def senddata(access_token,user,subject,content): send_url = 'https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=' + access_token send_values = { "touser":"*******", #企业号中的用户帐号,在zabbix用户media中配置,如果配置不正常,将按部门发送。 "toparty":"2", #企业号中的部门id。 "msgtype":"text", #消息类型。 "agentid":"*******", #企业号中的应用id。 "text":{ "content":subject + '\n' + content }, "safe":"0" } # send_data = json.dumps(send_values, ensure_ascii=false) send_data = simplejson.dumps(send_values, ensure_ascii=false).encode('utf-8') send_request = urllib2.request(send_url, send_data) response = json.loads(urllib2.urlopen(send_request).read()) print str(response) if __name__ == '__main__': user = str(sys.argv[1]) #zabbix传过来的第一个参数 subject = str(sys.argv[2]) #zabbix传过来的第二个参数 content = str(sys.argv[3]) #zabbix传过来的第三个参数 corpid = '***********' #企业号的标识(上文中提到获取位置) corpsecret = '*********' #管理组凭证密钥(上文中提到获取位置) accesstoken = gettoken(corpid,corpsecret) senddata(accesstoken,user,subject,content) [root@koby scripts]# chmod 755 weixin.py & chown -r zabbix.zabbix weixin.py
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
手动测试weixin.py脚本,可以使用用户账号或应用id去测试,观察微信是否能收到信息:
[root@koby scripts]# ./weixin.py 654547615@qq.com test test https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid=wwa837c8ac53ec6618&corpsecret=lwc9by3pew8cf9q3fqj1olz-afvyarv7_vwvdxpuzxm {u'invalidparty': u'2', u'invaliduser': u'', u'errcode': 0, u'errmsg': u'ok'
- 1
- 2
- 3
上面的654547615@qq.com是我们的用户的账号
当在企业微信上收到发送的信息后我们就可以登录zabbix,在上面添加报警配置1)创建报警媒介(这里我选用python脚本:weixin.py)
注意下面要填写的脚本参数:
{alert.sendto}
{alert.subject}
{alert.message}
2)创建用户weixin(密码一栏可以选择跟之前的超级管理员zabbix一样的密码;用户类型也可以设置成超级管理员)
3)创建动作
{trigger.status}: {trigger.name}
告警主机:{host.name}
主机ip: {host.ip}
告警时间:{event.date} {event.time}
告警等级:{trigger.severity}
告警信息:{trigger.name}
问题详情:{item.name}:{item.value}
当前状态: {trigger.status}:{item.value1}
事件id: {event.id}{trigger.status}: {trigger.name}
告警主机:{host.name}
主机ip: {host.ip}
告警时间:{event.date} {event.time}
告警等级:{trigger.severity}
告警信息:{trigger.name}
问题详情:{item.name}:{item.value}
当前状态: {trigger.status}:{item.value1}
事件id: {event.id}到这里我们就配置完毕了 但是这样的问题是只能用企业微信接到消息 那么如何让我们平时使用的微信也能接到消息呢?
这里我们用手机扫描二维码进行关注 下面我们来测试下
[root@koby scripts]# service zabbix_agentd stop
shutting down zabbix_agentd: [ ok ]
上一篇: 命令which, whereis, who, w的用法
下一篇: leveldb.net对象读写封装