本文主要是介绍“【逗老师带你学IT】PRTG监控系统通过企业微信推送图文混排告警消息”的不完全优化,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
原创:【逗老师带你学IT】PRTG监控系统通过企业微信推送图文混排告警消息
https://blog.csdn.net/ytlzq0228/article/details/105525667
原文在操作上有一些细节bug,对像我一样的python菜鸟是个坑。为了填这些坑,花了2天时间使用new bing 对逗老师的代码进行修改和优化。以下直接说明我测试的成果。
无图无真相,先上图!
效果一:一条图文推送
效果二:一条文字推送,一条图文推送
两种效果,深度PRTG用户会经常遇到一个问题,设备宕机PRTG会对每个传感器的消息进行推送,结果变成消息轰炸💣。。。基于这个原因对“逗老师”的代码进行修改优化,代码部分都是new bing完成的,我只负责提问题。😁
过程部分参考逗老师原文,以下我踩坑的部分:
1、PRTG调用程序文件“wechat_wbhook.bat”的8个参数
"%probe" "%group" "%device" "%name" "%status" "%down" "%message" "%sensorid"
2、wechat_webhook.bat 脚本记得用笔记本保存为ansi编码。
解决PRTG变量参数带出的数据包含空格和符号导致python识别错误的问题。
@echo off
setlocal enabledelayedexpansion
set i=1
for %%a in (%*) do (set arg[!i!]=%%~aset /a i+=1
)
"C:\Users\Administrator\AppData\Local\Programs\Python\Python38\python.exe" "C:\Program Files (x86)\PRTG Network Monitor\Notifications\EXE\wechat_webhook.py" "!arg[1]!" "!arg[2]!" "!arg[3]!" "!arg[4]!" "!arg[5]!" "!arg[6]!" "!arg[7]!" "!arg[8]!"
2、效果一的代码,wechat_webhook.py记得用笔记本保存为utf-8编码
webhook链接自备,记得修改url、id、passhash为自己的。
import json
import requests
import sys
import datetimewebhook_url = "https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=******"def wechatwork_robot():now_time = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')paramsList = ["", "【探针设备】:", "【设备群组】:", "【节点】:", "【传感器名称】:", "【现在状态】:", "【停机时间】:", "【附加消息】:", "【传感器ID】:"]content = ""headers = {"Content-Type": "text/plain"}for i in range(len(sys.argv)):if i > 0:content = content + paramsList[i] + sys.argv[i] + "\n"data = {"msgtype": "news","news": {"articles": [{"title": sys.argv[5] + "@" + sys.argv[3],"description": "**通知时间:" + now_time + "**\n" + content,"url": "http://www.prtg.com/chart.svg?type=graph&width=500&height=215&graphid=0&id=" + sys.argv[8] + "&username=****&passhash=****","picurl": "http://www.prtg.com/chart.png?type=graph&width=500&height=215&graphid=0&id=" + sys.argv[8] + "&username=****&passhash=****"}]}}r = requests.post(url=webhook_url, headers=headers, json=data)print(r.text)wechatwork_robot()
3、效果二的代码,wechat_webhook.py记得用笔记本保存为utf-8编码(原)
webhook链接自备,记得修改url、id、passhash为自己的。
#import http.client
import json
import urllib
import requests
import sys
import datetimewebhook_url="https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=*****"
#以上地址改成企业微信小机器人webhook地址
#安全部的也不要猜了,这个URL肯定不是真的def wechatwork_robot():now_time = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')paramsList =[ "", "探针设备:","设备群组:","节点:", "传感器名称:" , "现在状态:","停机时间:","附加消息:","传感器ID:",]content = ""headers = {"Content-Type": "text/plain"}for i in range(len(sys.argv)):if i>0:content = content +"<font color=\"comment\">"+paramsList[i]+"</font>"+sys.argv[i]+"\n"data1 = {"msgtype": "markdown","markdown": {"content": "**<font color=\"info\">【PTRG微信小机器人】</font>**\n**通知时间:"+ now_time +"**\n"+ content,}}r = requests.post(url=webhook_url,headers=headers, json=data1)print(r.text)#纯文本的告警消息data2 = {"msgtype": "news","news": {"articles" : [{"title" : "告警节点实时状态,ID:"+sys.argv[8],"description" : "点击图片进入PRTG查看当前状态详细信息\n传感器名称:"+sys.argv[4],"url" : "http://www.prtg.com/chart.svg?type=graph&width=500&height=215&graphid=0&id="+sys.argv[8]+"&username=****&passhash=****",#点击图片直接跳转到告警节点的web页面,需要带认证信息"picurl" : "http://www.prtg.com/chart.png?type=graph&width=500&height=215&graphid=0&id="+sys.argv[8]+"&username=****&passhash=****"#告警图片URL为《PRTG HTTP API获取指定传感器流量图表图片》一文中介绍的API URL}]}}r = requests.post(url=webhook_url,headers=headers, json=data2)print(r.text)#图文混排的告警消息wechatwork_robot()
这篇关于“【逗老师带你学IT】PRTG监控系统通过企业微信推送图文混排告警消息”的不完全优化的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!