版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
1、查看Zabbix Script存放位置
grep -i AlertScriptsPath /etc/zabbix/zabbix_server.conf
#AlertScriptsPath=/usr/lib/zabbix/alertscripts
2、编写Python Code
#!/usr/bin/python3
import urllib.request
import json
import sys
import simplejson
def gettoken(corpid, corpsecret):
gettoken_url = 'https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid=' + corpid + '&corpsecret=' + corpsecret
print(gettoken_url)
try:
token_file = urllib.request.urlopen(gettoken_url)
except Exception as e:
print(e)
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, subject, content):
send_url = 'https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=' + access_token
send_values = {
"touser": "user", # 企业号中的用户帐号,在zabbix用户Media中配置,如果配置不正常,将按部门发送。
"toparty": gid, # 企业号中的部门id,这个gid是zabbix传入的,变化的。
"msgtype": "text", # 消息类型。
"agentid": "1000002", # 企业号中的应用id。
"text": {
"content": subject + '\n' + content
},
"safe": "0"
}
send_data = simplejson.dumps(send_values, ensure_ascii=False).encode('utf-8')
send_request = urllib.request.Request(send_url, send_data)
response = json.loads(urllib.request.urlopen(send_request).read())
print(str(response))
if __name__ == '__main__':
gid = str(sys.argv[1]) # zabbix传过来的第一个参数,这里获取的是微信子部门的ID
subject = str(sys.argv[2]) # zabbix传过来的第二个参数
content = str(sys.argv[3]) # zabbix传过来的第三个参数
corp_id = 'This is corpid' # CorpID是企业号的标识
corp_secret = 'This is corp secret' # corpsecretSecret是管理组凭证密钥
access_token = gettoken(corp_id, corp_secret)
senddata(access_token, subject, content)
3、赋予脚本执行权限并重启Zabbix Service
chmod +x wechat.py
systemctl restart zabbix-server
4、测试脚本可用性
./wechat.py 2 server_exception ‘server xxx down!’ #这里的 “2” 是企业微信通讯录部门ID
剩下的就是在Zabbix web配置了!