1、Zabbix5.0微信报警
1.1、注测企业微信:
https://work.weixin.qq.com/wework_admin/register_wx
文章图片
1.2、企业微信注册成功后进入后台管理:
文章图片
1.3、添加一个部门,并记住部门id:
#我这里添加的子部门ID为2
文章图片
1.4、添加一个用户到上面创建的部门里面(这里采取直接将管理员添加进去):
(1)、
文章图片
(2)、
文章图片
(3)、记住用户账号:
#帐号:QiChangJun
文章图片
1.5、创建一个自建应用:
(1)、
文章图片
(2)、
文章图片
(3)、创建完成记住AgentID和Secret:
【Zabbix|Zabbix5.0微信告警实战配置】#AgentId: 1000002
#Secret:32MSg1l9LgHkx31nTT_70akKYMlKVrcARPoJQ3aWdkQ
文章图片
1.6、记住企业ID:
#企业ID: ww5be13e9cb8bc431e
文章图片
到这里上面的企业微信注册就完成了,记住上面所提到需要记住的。
1.7、微信企业号接口调试工具:
https://open.work.weixin.qq.com/wwopen/devtool/interface/combine
文章图片
1.8、查看zabbix-server脚本存放的位置:
[root@controlnode ~]# grep ^AlertScriptsPath /etc/zabbix/zabbix_server.confAlertScriptsPath=/usr/lib/zabbix/alertscripts
1.9、安装requests组件:
[root@controlnode ~]# yum install python-pip -y[root@controlnode ~]# pip install --upgrade pip[root@controlnode ~]# pip install requests
1.10、下载微信脚本:
[root@zabbix ~]# git clone https://github.com/X-Mars/Zabbix-Alert-WeChat.git[root@zabbix ~]# cd Zabbix-Alert-WeChat/[root@zabbix Zabbix-Alert-WeChat]# cp wechat.py /usr/lib/zabbix/alertscripts/[root@zabbix ~]# cd /usr/lib/zabbix/alertscripts/[root@zabbix alertscripts]# cat wechat.py
#脚本原始配置如下
#!/usr/bin/python2.7
#_*_coding:utf-8 _*_
#auther:火星小刘import requests,sys,json
import urllib3
urllib3.disable_warnings()reload(sys)
sys.setdefaultencoding('utf-8')def GetTokenFromServer(Corpid,Secret):
Url = "https://qyapi.weixin.qq.com/cgi-bin/gettoken"
Data = https://www.it610.com/article/{"corpid":Corpid,
"corpsecret":Secret
}
r = requests.get(url=Url,params=Data,verify=False)
print(r.json())
if r.json()['errcode'] != 0:
return False
else:
Token = r.json()['access_token']
file = open('/tmp/zabbix_wechat_config.json', 'w')
file.write(r.text)
file.close()
return Tokendef SendMessage(User,Agentid,Subject,Content):
try:
file = open('/tmp/zabbix_wechat_config.json', 'r')
Token = json.load(file)['access_token']
file.close()
except:
Token = GetTokenFromServer(Corpid, Secret)n = 0
Url = "https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=%s" % Token
Data = https://www.it610.com/article/{"touser": User,# 企业号中的用户帐号,在zabbix用户Media中配置,如果配置不正常,将按部门发送。
#"totag": Tagid,# 企业号中的标签id,群发使用(推荐)
#"toparty": Partyid,# 企业号中的部门id,群发时使用。
"msgtype": "text",# 消息类型。
"agentid": Agentid,# 企业号中的应用id。
"text": {
"content": Subject + '\n' + Content
},
"safe": "0"
}
r = requests.post(url=Url,data=https://www.it610.com/article/json.dumps(Data),verify=False)
while r.json()['errcode'] != 0 and n < 4:
n+=1
Token = GetTokenFromServer(Corpid, Secret)
if Token:
Url = "https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=%s" % Token
r = requests.post(url=Url,data=https://www.it610.com/article/json.dumps(Data),verify=False)
print(r.json())return r.json()if __name__ =='__main__':
User = sys.argv[1]# zabbix传过来的第一个参数
Subject = str(sys.argv[2])# zabbix传过来的第二个参数
Content = str(sys.argv[3])# zabbix传过来的第三个参数Corpid = "wxaf"# CorpID是企业号的标识
Secret = "aKDdCRT76"# Secret是管理组凭证密钥
#Tagid = "1"# 通讯录标签ID
Agentid = "1000001"# 应用ID
#Partyid = "1"# 部门IDStatus = SendMessage(User,Agentid,Subject,Content)
print Status
1.11、根据脚本里面的注释进行相应的修改,改成自己企业微信号中的信息,如下:
[root@controlnode alertscripts]# vi wechat.py
#!/usr/bin/python2.7
#_*_coding:utf-8 _*_
#auther:火星小刘import requests,sys,json
import urllib3
urllib3.disable_warnings()reload(sys)
sys.setdefaultencoding('utf-8')def GetTokenFromServer(Corpid,Secret):
Url = "https://qyapi.weixin.qq.com/cgi-bin/gettoken"
Data = https://www.it610.com/article/{"corpid":Corpid,
"corpsecret":Secret
}
r = requests.get(url=Url,params=Data,verify=False)
print(r.json())
if r.json()['errcode'] != 0:
return False
else:
Token = r.json()['access_token']
file = open('/tmp/zabbix_wechat_config.json', 'w')
file.write(r.text)
file.close()
return Tokendef SendMessage(User,Agentid,Subject,Content):
try:
file = open('/tmp/zabbix_wechat_config.json', 'r')
Token = json.load(file)['access_token']
file.close()
except:
Token = GetTokenFromServer(Corpid, Secret)n = 0
Url = "https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=%s" % Token
Data = https://www.it610.com/article/{"touser": "QiChangJun",# 企业号中的用户帐号,在zabbix用户Media中配置,如果配置不正常,将按部门发送。
#"totag": Tagid,# 企业号中的标签id,群发使用(推荐)
"toparty": "2",# 企业号中的部门id,群发时使用。
"msgtype": "text",# 消息类型。
"agentid": "1000002",# 企业号中的应用id。
"text": {
"content": Subject + '\n' + Content
},
"safe": "0"
}
r = requests.post(url=Url,data=https://www.it610.com/article/json.dumps(Data),verify=False)
while r.json()['errcode'] != 0 and n < 4:
n+=1
Token = GetTokenFromServer(Corpid, Secret)
if Token:
Url = "https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=%s" % Token
r = requests.post(url=Url,data=https://www.it610.com/article/json.dumps(Data),verify=False)
print(r.json())return r.json()if __name__ =='__main__':
User = sys.argv[1]# zabbix传过来的第一个参数
Subject = str(sys.argv[2])# zabbix传过来的第二个参数
Content = str(sys.argv[3])# zabbix传过来的第三个参数Corpid = "ww5be13e9cb8bc431e"# CorpID是企业号的标识
Secret = "32MSg1l9LgHkx31nTT_70akKYMlKVrcARPoJQ3aWdkQ"# Secret是管理组凭证密钥
#Tagid = "1"# 通讯录标签ID
Agentid = "1000002"# 应用ID
Partyid = "2"# 部门IDStatus = SendMessage(User,Agentid,Subject,Content)
print Status
1.12、测试:
(1)、执行脚本:
[root@controlnode alertscripts]# ./wechat.py QiChangJun test 67
文章图片
参数说明:
QiChangJun:表示新建部门下的用户账号。
test:表示发送的报警信息的标题。
"67":发送的报警信息的具体内容。
(2)、手机登陆到上面自己创建的企业微信,可查看到报警信息:
文章图片
1.13、在zabbix web界面中配置微信报警:
(1)、进入:管理 -> 报警媒介类型 -> 创建媒体类型:
脚本参数
{ALERT.SENDTO}
{ALERT.SUBJECT}
{ALERT.MESSAGE}
文章图片
(2)、进入:配置-> 动作 -> Report problems to Zabbix administrators 创建动作
①配置故障告警动作(准备好一台主机安装agent,安装http服务并且配置监听80端口的监控项和触发器,此处选择我已配置好的触发器,触发器新建完成请启用触发器,此处过程省略)
文章图片
②操作配置,配置告警
文章图片
③配置故障恢复告警
文章图片
(3)、进入:管理->用户->报警媒介(这里收件人对应企业微信号中的应用ID):
①配置Admin用户报警媒介
文章图片
文章图片
1.14、报警测试:
(1)、停止httpd服务:
[root@controlnode alertscripts]# systemctl stop httpd
文章图片
(2)、启动httpd服务:
[root@controlnode alertscripts]# systemctl start httpd
文章图片
推荐阅读
- python|zabbix(设置企业微信告警(python3脚本))
- zabbix|Zabbix之企业微信告警
- Zabbix|Zabbix5.0配置微信单用户告警
- linux|zabbix server 6.0安装(rancher+kubernetes部署)
- Zabbix Web启用SSL
- zabbix--图形字体乱码
- zabbix-邮件报警及nginx自治愈
- zabbix的搭建及使用
- Zabbix 地址Ping检测告警