dog1888 发表于 2018-1-1 19:35:56

Zabbix配置微信报警通知

root@evescn:~# cat /etc/zabbix/alertscripts/weixin.sh  
#
!/bin/bash  
###SCRIPT_NAME:weixin.
sh###  
###send message from weixin
for zabbix monitor###  
###wuhf###
  
###V1
-2017-09-12###  

  
CropID
='XXXXXXXXXXXXXX'  
Secret
='XXXXXXXXXXXXXXXXXXXXXXXXX'  
GURL
="https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid=$CropID&corpsecret=$Secret"  
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 PartyID=1                        #部门id,定义了范围,组内成员都可接收到消息
  local Msg=$(echo "$@" | cut -d" " -f3-)#过滤出zabbix中传递的第三个参数
  printf '{\n'
  printf '\t"touser": "'"$User"\"",\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
页: [1]
查看完整版本: Zabbix配置微信报警通知