首页 > 微信 > 详细

zabbix中通过shell脚本进行微信监控告警

时间:2015-09-10 11:11:42      阅读:503      评论:0      收藏:0      [点我收藏+]

通过shell脚本配置通过微信进行告警方式发送:

一、在zabbix的发送告警的的目录下新建sendWebChat.sh

cd  /usr/lib/zabbix/alertscripts

vim  sendWeChat.sh

二、脚本内容(需要企业号的CropID和Secret)

#!/bin/bash

# Filename:    sendWeChat.sh
# Revision:    1.0
# Date:          2015/09/08
# Author:      Json
# Description: zabbix微信告警脚本
# Notes:       WeCaht告警
#
CropID=企业号的CropID

Secret=企业号的Secret

GURL="https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid=$CropID&corpsecret=$Secret"
Gtoken=$(/usr/bin/curl -s -G $GURL | awk -F\" ‘{print $4}‘)
PURL="https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=$Gtoken"
Content=$3

/usr/bin/curl --data-ascii ‘{ "touser": "@all", "toparty": " @all ","msgtype": "text","agentid": "1","text": {"content": "‘${Content}‘"},"safe":"0"}‘ $PURL

本文出自 “PETER-疏狂少年” 博客,请务必保留此出处http://petervip.blog.51cto.com/3790959/1693335

zabbix中通过shell脚本进行微信监控告警

原文:http://petervip.blog.51cto.com/3790959/1693335

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!