zabbix監控的維信報警設置線上落地經驗
微信企業號的申請
1、註冊的地址https://qy.weixin.qq.com/
2、創建用戶和應用
zabbix server配置腳本的路徑
#vim zabbix_server.conf
AlertScriptsPath=/data/zabbix/alertscripts
$ mkdir /data/zabbix/alertscripts -p
$ chown zabbix.zabbix /data/zabbix/alertscripts -R
測試接口是否正常
調用微信接口需要一個調用接口的憑證:access_token
通過:GropID,Secret才能獲取到access_token,但是獲取到的token有效期為兩分鐘
打開上面的url,使用上面monitops企業號的monit-manager管理組的CorpID和Secret號獲得調用接口憑證access_token,如下:
這個腳本是放置在server端的,在配置文件”AlertScriptsPath”中指定腳本的路徑,並賦予執行權限。
#!/bin/bash
#SCRIPT_NAME: weixin.sh
#send message from weixin for zabbix monitor
CropID=‘wx8f104fc9b86b393f‘
Secret=‘TvCUZBGCTQE3nwM94VeoOpBpTbpvjW0cRd35Kh4HMUA‘
Gtoken=$(/usr/bin/curl -s -G $GURL | awk -F\" ‘{print $10}‘)
PURL="https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=$Gtoken"
function body() {
local int AppID=1 #企業號中的應用id
local UserID=$1 #部門成員id,zabbix中定義的微信接收者
local Msg=$(echo "$@" | cut -d" " -f3-)
printf ‘{\n‘
printf ‘\t"touser": "‘"$UserID"\"",\n"
printf ‘\t"toparty": "‘"$PartyID"\"",\n"
printf ‘\t"msgtype": "text",\n‘
printf ‘\t"agentid": "‘" $AppID "\"",\n"
printf ‘\t"text": {\n‘
printf ‘\t\t"content": "‘"$Msg"\""\n"
printf ‘\t},\n‘
printf ‘\t"safe":"0"\n‘
printf ‘}\n‘
}
/usr/bin/curl --data-ascii "$(body $1 $2 $3)" $PURL
或者使用python腳本
#!/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":"xxxx", #企業號中的部門id。
"msgtype":"text", #消息類型。
"agentid":"xxxxx", #企業號中的應用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 = ‘xxxxxx‘ #企業號的標識(上文中提到獲取位置)
corpsecret = ‘xxxx‘ #管理組憑證密鑰(上文中提到獲取位置)
accesstoken = gettoken(corpid,corpsecret)
senddata(accesstoken,user,subject,content)
測試
zabbix配置
1)創建報警媒介(這裏我選用python腳本:weixin.py)
註意下面要填寫的腳本參數:
{ALERT.SENDTO}
{ALERT.SUBJECT}
{ALERT.MESSAGE}
配置告警信息:
告警操作:
{TRIGGER.STATUS}: {TRIGGER.NAME}
告警主機:{HOST.NAME}
主機IP: {HOST.IP}
告警時間:{EVENT.DATE} {EVENT.TIME}
告警等級:{TRIGGER.SEVERITY}
告警信息:{TRIGGER.NAME}
問題詳情:{ITEM.NAME}:{ITEM.VALUE}
當前狀態: {TRIGGER.STATUS}:{ITEM.VALUE1}
事件ID: {EVENT.ID}
恢復操作:
{TRIGGER.STATUS}: {TRIGGER.NAME}
告警主機:{HOST.NAME}
主機IP: {HOST.IP}
告警時間:{EVENT.DATE} {EVENT.TIME}
告警等級:{TRIGGER.SEVERITY}
告警信息:{TRIGGER.NAME}
問題詳情:{ITEM.NAME}:{ITEM.VALUE}
當前狀態: {TRIGGER.STATUS}:{ITEM.VALUE1}
事件ID: {EVENT.ID}
zabbix監控的維信報警設置線上落地經驗