系統環境
[[email protected] ~]# cat /etc/redhat-release
CentOS Linux release 7.5.1804 (Core)
centos7安裝zabbix5.0 的方法見此文
https://blog.csdn.net/qq_19731521/article/details/107960063
注冊企業微信:
https://work.weixin.qq.com/wework_admin/register_wx
然後登入企業微信并打開管理背景
添加一個部門,并記住部門id:
#我這裡添加的子部門ID為2
記住使用者賬号:
打開應該用管理,建立應用
記住Agentld和secret
記住企業ID:
到這裡上面的企業微信注冊就完成了,記住上面所提到需要記住的。
微信企業号接口調試工具:
https://open.work.weixin.qq.com/wwopen/devtool/interface/combine
先下載下傳一些備用工具
[[email protected] ~]# yum -y install wget vim
檢視zabbix-server腳本存放的位置:
[[email protected] ~]# grep ^AlertScriptsPath /etc/zabbix/zabbix_server.conf
AlertScriptsPath=/usr/lib/zabbix/alertscripts
安裝simplejson
[[email protected] ~]# wget https://pypi.python.org/packages/f0/07/26b519e6ebb03c2a74989f7571e6ae6b82e9d7d81b8de6fcdbfc643c7b58/simplejson-3.8.2.tar.gz
[[email protected] ~]# tar zxvf simplejson-3.8.2.tar.gz && cd simplejson-3.8.2
[[email protected] ~]# python setup.py build
[[email protected] ~]# python setup.py install
配置監控腳本
[[email protected] ~]# cd /usr/lib/zabbix/alertscripts/
[[email protected] ~]# vi wechat.py
根據腳本裡面的注釋進行相應的修改,改成自己企業微信号中的資訊,腳本如下:
#!/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
print gettoken_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 = 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":"xxxx", #企業号中的使用者帳号,在zabbix使用者Media中配置,如果配置不正常,将按部門發送
"toparty":"xxx", #企業号中的部門
"msgtype":"text", #消息類型。
"agentid":"xxxx", #企業号中的應用id
"text":{
"content":subject + '\n' + content
},
"safe":"0"
}
# send_data = 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 = 'xxxxxxxxxxxxx' #CorpID是企業号的辨別
corpsecret = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxx' #corpsecretSecret是管理組憑證密鑰
accesstoken = gettoken(corpid,corpsecret)
senddata(accesstoken,user,subject,content)
給這個wechat.py檔案執行權限
[[email protected] alertscripts]# chmod +x wechat.py
指令行測試是否可以發送(看到下面資訊表示成功了)
[[email protected] alertscripts]# ./wechat.py user 報警測試 error
https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid=ww53f352c08224ecb2&corpsecret=HWxBHnhoH3n1wnulndcGFDkdYBwPYfSsw6SRNO2ZqAo
{u'invaliduser': u'', u'errcode': 0, u'errmsg': u'ok'}
[[email protected] alertscripts]# ./wechat.py QiChangJun test 67
https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid=ww53f352c08224ecb2&corpsecret=HWxBHnhoH3n1wnulndcGFDkdYBwPYfSsw6SRNO2ZqAo
{u'invaliduser': u'', u'errcode': 0, u'errmsg': u'ok'}
現在可以在zabbix上設定
進入:管理 -> 報警媒介類型 -> 建立媒體類型:
腳本參數
{ALERT.SENDTO}
{ALERT.SUBJECT}
{ALERT.MESSAGE}
添加告警标題和消息内容模闆可配置如下:
上圖添加的資訊如下:
預設标題:伺服器:{HOST.NAME}發生: {TRIGGER.NAME}故障!
消息内容:
告警主機:{HOST.NAME}
告警位址:{HOST.IP}
監控項目:{ITEM.NAME}
監控取值:{ITEM.LASTVALUE}
告警等級:{TRIGGER.SEVERITY}
目前狀态:{TRIGGER.STATUS}
告警資訊:{TRIGGER.NAME}
告警時間:{EVENT.DATE} {EVENT.TIME}
事件ID:{EVENT.ID}
添加告警恢複标題和消息内容模闆可配置如下:
上圖添加的資訊如下:
預設标題:伺服器:{HOST.NAME}: {TRIGGER.NAME}已恢複!
消息内容:
告警主機:{HOST.NAME}
告警位址:{HOST.IP}
監控項目:{ITEM.NAME}
監控取值:{ITEM.LASTVALUE}
告警等級:{TRIGGER.SEVERITY}
目前狀态:{TRIGGER.STATUS}
告警資訊:{TRIGGER.NAME}
告警時間:{EVENT.DATE} {EVENT.TIME}
恢複時間:{EVENT.RECOVERY.DATE} {EVENT.RECOVERY.TIME}
持續時間:{EVENT.AGE}
事件ID:{EVENT.ID}
建立使用者
再建立使用者組,将剛建立的使用者加入使用者組:
建立動作
以下是上圖的,操作、恢複操作、更新操作的詳細:
進行以下測試
以上就是微信報警的步驟.