PS:Zabbix微信脚本放置路径查看方法
[root@db04 ~]# grep ^[a-Z] /etc/zabbix/zabbix_server.conf
AlertScriptsPath=/usr/lib/zabbix/alertscripts
[root@db04 ~]# cd /usr/lib/zabbix/alertscripts
[root@db04 alertscripts]# vim weixin.py
#!/usr/bin/env python
#-*- coding: utf-8 -*-
import requests
import sys
import os
import json
import logging
logging.basicConfig(level = logging.DEBUG, format = '%(asctime)s, %(filename)s, %(levelname)s, %(message)s',
datefmt = '%a, %d %b %Y %H:%M:%S',
filename = os.path.join('/tmp','weixin.log'),
filemode = 'a')
corpid='wwdfc9060ec9b81d68' #填写自己的企业ID号
appsecret='MJr5l9hrg1_-dA-ZR8XDzA54H12x2GM38AEa_z6_F7I'
#填写应用密码
agentid=1000003 #填写自己的应用ID
token_url='https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid=' + corpid + '&corpsecret=' + appsecret
req=requests.get(token_url)
accesstoken=req.json()['access_token']
msgsend_url='https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=' + accesstoken
touser=sys.argv[1]
subject=sys.argv[2]
#toparty='3|4|5|6'
message=sys.argv[2] + "\n\n" +sys.argv[3]
params={
"touser": touser,
# "toparty": toparty,
"msgtype": "text",
"agentid": agentid,
"text": {
"content": message
},
"safe":0
}
req=requests.post(msgsend_url, data=json.dumps(params))
logging.info('sendto:' + touser + ';;subject:' + subject + ';;message:' + message)
注释:
第一点:将脚本中的下列相关信息改为自己的
corpid='wwdfc9060ec9b81d68' #填写自己的企业ID号
appsecret='MJr5l9hrg1_-dA-ZR8XDzA54H12x2GM38AEa_z6_F7I' #填写自己的应用密码
agentid=1000003 #填写自己的应用ID
第二点:微信脚本应用举例
格式:./weixin.py 用户名 报警标题 报警信息
[root@db04 alertscripts]# ./weixin.py oldchen 第一次发送信息 大家不要惊慌
在这里,(oldchen)是用户名,(第一次发送信息)是报警标题,(大家不要惊慌)是报警信息。