码迷,mamicode.com
首页 > 微信 > 详细

Zabbix报警脚本-微信

时间:2018-01-18 18:01:44      阅读:263      评论:0      收藏:0      [点我收藏+]

标签:appid   zabbix   ash   bash   curl   for   部门   data-   mes   

#!/bin/bash

###SCRIPT_NAME:weixin.sh###
###send message from weixin for zabbix monitor###
###write by lvkaineng###
###2015-11-3###
#1
CropID=‘wx4ad02e53cdceccd7‘
#3
Secret=‘pczpXfpvDqfLaBhVhssk-XaNbSMw4jwwpYNAuh_FQPo‘
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() {

#AppID 企业号中的应用id
local int AppID=29
#4 部门id 多个请用分隔符 ‘|‘
local PartyID="22"
#部门成员id
local UserID=$1
#local UserID=@all
local Msg=$(echo "$@" | cut -d" " -f3-)
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
echo "1">> /tmp/weixin

Zabbix报警脚本-微信

标签:appid   zabbix   ash   bash   curl   for   部门   data-   mes   

原文地址:http://blog.51cto.com/diyunjie/2062551

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!