1、企微机器人报警配置

多种格式的报警信息配置

https://developer.work.weixin.qq.com/document/path/91770

2、场景

针对单页面使用python脚本通过定时任务进行监控,如果返回非200报警

import time,datetime
import requests,re
import json

def geturl(link):
headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'}
r = requests.get(link,headers = headers)
r.encoding = 'utf-8'
response = r.status_code
return(response)


prod_url = "https://127.0.0.1/index.html" #监控的页面

alert_url = "https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=xxxxxxxxxxx" #报警接收url

prod_login_page = geturl(prod_url)
json.headers = {'Content-Type': 'application/json'}

if prod_login_page != 200:
mess = json.dumps({'content': 'Alert: xxx page not working'})
mess = json.loads(mess)
full_mess = json.dumps({'msgtype': 'text', 'text': mess})
print(full_mess)
r = requests.post(alert_url,headers=json.headers,data=full_mess)
else:
print("nothing")