1. 登录企业微信管理后台
https://work.weixin.qq.com/wework_admin/loginpage_wx?etype=expired&redirect_uri=https://work.weixin.qq.com/wework_admin/frame#contacts
文章图片
文章图片
文章图片
文章图片
文章图片
文章图片
文章图片
这个是测试的地址 测试是否正常获取 https://work.weixin.qq.com/api/devtools/devtool.php
文章图片
修改zabbix_server.conf
[root@localhost ~]# grep alertscripts /etc/zabbix/zabbix_server.conf
# AlertScriptsPath=${datadir}/zabbix/alertscripts
AlertScriptsPath=/opt/scripts/zabbix/alertscripts
安装simplejson
wget https://pypi.python.org/packages/f0/07/26b519e6ebb03c2a74989f7571e6ae6b82e9d7d81b8de6fcdbfc643c7b58/simplejson-3.8.2.tar.gz
tar zxvf simplejson-3.8.2.tar.gz && cd simplejson-3.8.2
python setup.py build
python setup.py install
安装时可能会报个错误’greenlet.h:8:20: 致命错误: Python.h:没有那个文件或目录’
解决办法 解决方法是安装python-dev,这是Python的头文件和静态库包:
sudo apt-get install python-dev
配置监控脚本
#!/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
printgettoken_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 = https://www.it610.com/article/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":"test",#企业号中的用户帐号,在zabbix用户Media中配置,如果配置不正常,将按部门发送。
"toparty":"2",#企业号中的部门id。
"msgtype":"text", #消息类型。
"agentid":"1000002",#企业号中的应用id。
"text":{
"content":subject + '\n' + content
},
"safe":"0"
}
#send_data = https://www.it610.com/article/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 ='ww80706331ded1d29b'#CorpID是企业号的标识
corpsecret = 'oxmHg2s_ANAYmASTtpLzaANVyGxdveMKnG_llHg86go'#corpsecretSecret是管理组凭证密钥
accesstoken = gettoken(corpid,corpsecret)
senddata(accesstoken,user,subject,content)
命令行测试是否可以发送
[root@localhost alertscripts]# ./wechat.py user 报警测试 error
https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid=ww13e3038f3427b098&corpsecret=GUQCMJAHGnpotGZqmWCXC-ULnjgLH6NyO7adJUpUYik
{u'invalidparty': u'2', u'invaliduser': u'', u'errcode': 0, u'errmsg': u'ok'}
不出问题应该已经可以接收到信息了
现在可以在zabbix上设置
文章图片
文章图片
文章图片
# 服务故障: {EVENT.NAME}
{
> 告警主机: **{HOST.NAME}**
> 主机地址: **{HOST.IP}**
> 监控项目: {ITEM.NAME}
> 当前取值: {ITEM.LASTVALUE}
> 告警等级: {TRIGGER.SEVERITY}
> 告警时间: {EVENT.DATE}-{EVENT.TIME}
> 事件ID: {EVENT.ID}
}
文章图片
# 故障恢复: {EVENT.NAME}
{
> 主机名称: **{HOST.NAME}**
> 主机地址: **{HOST.IP}**
> 告警名称: {EVENT.NAME}
> 持续时长: {EVENT.DURATION}
> 恢复时间: {EVENT.RECOVERY.DATE}-{EVENT.RECOVERY.TIME}
> 当前状态: {TRIGGER.STATUS}
> 当前取值: {ITEM.LASTVALUE}
> 事件ID: {EVENT.ID}
}
文章图片
创建用户
文章图片
文章图片
文章图片
文章图片
创建动作
文章图片
文章图片
文章图片
文章图片
下来基本上没问题了,如果接收不到消息的话可以进行以下测试
文章图片
文章图片
进行测试操作如果可以接收到那就看看触发器那些东西,如果报错可以看看报错内容,有一个错误是路径错误,解决办法就是将py脚本cp到相应目录下。
需要markdown格式的可用此代码 注:这个需要用微信机器人,之前那个不能是同,因为此代码需要用到微信机器人的webhook
#!/usr/local/python3/bin/python3
# coding:utf-8
# zabbix企业微信报警
import requests, json, sys, os, datetime
#微信钩子机器人地址
webhook = "https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=xxxxxxxxxxxxxxxxxxxxxxxxxxx"#在此设置即可
#zabbix传过来的三个变量
user = sys.argv[1]
title = sys.argv[2]
text = sys.argv[3]
#每发送一次报警,就记一次日志
file = r"/var/log/zabbix/send2wechat.log"
#报警的信息
data = https://www.it610.com/article/{"msgtype": "markdown",
"markdown": {
"content": title + "\n" + text
}
}
#请求这个钩子机器人
headers = {'Content-Type': 'application/json'}
x = requests.post(url=webhook, data=https://www.it610.com/article/json.dumps(data), headers=headers)
if os.path.exists(file):
f = open(file,"a+")
else:
f = open(file, "w+")
f.write(" " + " - -" * 30)
f.write("\n")#记录日志
if x.json()["errcode"] == 0:
f.write(" "+ str(datetime.datetime.now()) + " " + str(user) + " " + "发送成功" + " " + str(title) + "\n")
f.close()
else:
f.write(" "+ str(datetime.datetime.now()) + " " + str(user) + " " + "发送失败" + " " + str(title) + "\n")
f.close()
【zabbix5.0配置企业微信报警】
文章图片
推荐阅读
- zabbix|Zabbix企业微信告警
- zabbix设置企业微信告警
- python|zabbix(设置企业微信告警(python3脚本))
- Zabbix|Zabbix5.0微信告警实战配置
- zabbix|Zabbix之企业微信告警
- Zabbix|Zabbix5.0配置微信单用户告警
- linux|zabbix server 6.0安装(rancher+kubernetes部署)
- Zabbix Web启用SSL
- zabbix--图形字体乱码