3.1、注测企业微信:
3.2、企业微信注册成功后进入后台管理:
3.3、添加一个部门,并记住部门id:
#我这里添加的子部门ID为2
3.4、添加一个用户到上面创建的部门里面(这里采取直接将管理员添加进去):
1、
2、
3、记住用户账号:
#帐号:LiuChang
3.5、创建一个自建应用:
1、
2、
3、创建完成记住AgentID和Secret:
#AgentId 1000002
#Secret 2R7fvRNuSK8grwtVFBC_O_qfje3gyIKZE0MS_nPCwbc
3.6、记住企业ID:
#企业ID ww6922bb251acfe899
到这里上面的企业微信注册就完成了,记住上面所提到需要记住的。
3.7、微信企业号接口调试工具:
http://qydev.weixin.qq.com/debug
3.8、查看zabbix-server脚本存放的位置:
[root@controlnode ~]# grep ^AlertScriptsPath /etc/zabbix/zabbix_server.conf
AlertScriptsPath=/usr/lib/zabbix/alertscripts
3.9、安装requests组件:
[root@controlnode ~]# yum install python-pip
[root@controlnode ~]# pip install --upgrade pip
[root@controlnode ~]# pip install requests
3.10、下载微信脚本:
[root@controlnode ~]# mkdir -p /tools/
[root@controlnode ~]# cd /tools/
[root@controlnode tools]# git clone https://github.com/X-Mars/Zabbix-Alert-WeChat.git
[root@controlnode tools]# cp -a Zabbix-Alert-WeChat/wechat.py /usr/lib/zabbix/alertscripts/
[root@controlnode tools]# cd /usr/lib/zabbix/alertscripts/
[root@controlnode alertscripts]# chmod +x wechat.py
[root@controlnode alertscripts]# cat wechat.py
#脚本原始配置如下
#!/usr/bin/python
#-*- coding: utf-8 -*-
#zabbix微信报警
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 = {
"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 Token
def 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 = {
"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=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=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" # 部门ID
Status = SendMessage(User,Agentid,Subject,Content)
print Status
3.11、根据脚本里面的注释进行相应的修改,改成自己企业微信号中的信息,如下:
[root@controlnode alertscripts]# cat wechat.py
#!/usr/bin/python
#-*- coding: utf-8 -*-
#zabbix微信报警
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 = {
"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 Token
def 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 = {
"touser": "LiuChang", # 企业号中的用户帐号,在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=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=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 = "ww6922bb251acfe899" # CorpID是企业号的标识
Secret = "2R7fvRNuSK8grwtVFBC_O_qfje3gyIKZE0MS_nPCwbc" # Secret是管理组凭证密钥
#Tagid = "1" # 通讯录标签ID
Agentid = "1000002" # 应用ID
Partyid = "2" # 部门ID
Status = SendMessage(User,Agentid,Subject,Content)
print Status
3.12、测试:
1、执行脚本:
[root@controlnode alertscripts]# ./wechat.py LiuChang Title_test "这是测试信息,请忽略"
参数说明:
LiuChang:表示新建部门下的用户账号。
Title_test:表示发送的报警信息的标题。
"这是测试信息,请忽略":发送的报警信息的具体内容。
2、手机登陆到上面自己创建的企业微信,可查看到报警信息:
3.13、在zabbix web界面中配置微信报警:
1、进入:管理 -> 报警媒介类型 -> 创建媒体类型:
脚本参数
{ALERT.SENDTO}
{ALERT.SUBJECT}
{ALERT.MESSAGE}
2、进入:配置-> 动作 -> Report problems to Zabbix administrators 创建动作,这里省略,具体看
上一篇文章"2、Zabbix5.0钉钉报警":
3、进入:管理->用户->报警媒介(这里收件人对应企业微信号中的应用ID):
3.14、报警测试:
1、停止nginx服务:
[root@controlnode alertscripts]# systemctl stop nginx
2、启动ngnix服务:
[root@controlnode alertscripts]# systemctl start nginx
手机扫一扫
移动阅读更方便
你可能感兴趣的文章