windows批处理bat脚本实现微信告警——监控系统WGCLO
2021-09-01 本文已影响0人
王逅逅_f6c0
本文是在windows系统用bat方式实现微信告警,Linux系统用shell方式实现微信告警请点击此处查看
1.首先下载curl工具,并配置环境变量
https://www.wgstart.com/help/docs8.html
image.png2.首先下载微信发送消息工具wgcloud-weixin-release.exe,下载后和server放到同一个主机上,运行即可,不要关闭,因为bat会调用这个服务
3.首先我们要去注册企业微信了,然后创建一个应用,记得以下图片中的标红信息,企业ID,应用ID,应用Secret
image.pngimage.png
4.新建一个sendMsg_weixin.bat文件,此处目录和文件名称是为测试方便,自己可以根据实际场景自定义,内容如下
@echo off
echo warn content is : %1
set content="WGCLOUD告警:%1"
set content=%content:"=%
echo %content% > d:/sendMsg.txt
native2ascii d:/sendMsg.txt d:/sendMsg_unicode.txt
set /p content_unicode=<d:/sendMsg_unicode.txt
echo %content_unicode%
set cropID="微信企业ID"
set secret="微信企业应用Secret"
set appID=1000002
set userID="部门成员id,微信接收者,多个接收者用逗号,隔开"
set ding_url="http://localhost:10000/wx"
curl -H "Content-Type: application/json" -d "{\"content\":\"%content_unicode%\",\"cropID\":\"%cropID%\",\"secret\":\"%secret%\",\"appID\":%appID%,\"userID\":\"%userID%\"}" -s %ding_url%
部门成员ID查看方式如下图,鼠标放在成员名字上即可看到账号,即是成员ID
image.png
5.cli 测试
image.png6.测试完成,修改/server/config/application.yml,告警脚本文件,可以为空,参考:/server/template/sendMsg.sh
warnScript: d:\sendMsg_weixin.bat
7.好了,重启server,这样就可以在微信收到告警消息了
image.png