常见的报警方式有:邮件,电话,短信,微信。
短信和电话,通常是收费的(若你有不收费的,可以评论分享一下),而邮件又不是那么及时,因此最后我选择微信通知。
这里说的微信,是企业微信,而我之前注册过个体户的执照,因此可以很轻松就可以注册自己的企业微信。
很多人学习蟒蛇,不知道从何学起。 很多人学习python,掌握了基本语法之后,不知道在哪里寻找案例上手。 很多已经可能案例的人,却不知道如何去学习更多高深的知识。 那么针对这三类人,我给大家提供一个好的学习平台,免费获取视频教程,电子书,以及课程的源代码! QQ群:101677771 欢迎加入,一起讨论一起学习
登陆网页版企业微信
(https://work.weixin.qq.com/),
点击 应用管理 -> 应用 -> 创建应用
上传应用的 logo,输入应用名称,再选择可见范围,成功创建一个告警应用
使用 Python 发送告警请求,其实就只使用到两个接口
https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid={corpid}&corpsecret={secret}
https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token={token}
可以看到,最重要的是 corpid 和 secret:
corpid 可以通过 我的企业 -> 企业信息 获取
而 secret 获取相对麻烦一点,点击前面的创建应用,点击 查看 secret
然后再点击发送就会发送到你的企业微信上
最后将 corpid 和 secret 填入下面的常量中。
import json import datetime import requests CORP_ID = "" SECRET = "" class WeChatPub: s = requests.session() def __init__(self): self.token = self.get_token() def get_token(self): url = f"https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid={CORP_ID}&corpsecret={SECRET}" rep = self.s.get(url) if rep.status_code != 200: print("request failed.") return return json.loads(rep.content)['access_token'] def send_msg(self, content): url = "https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=" + self.token header = { "Content-Type": "application/json" } form_data = { "touser": "@all", "toparty": " PartyID1 | PartyID2 ", "totag": " TagID1 | TagID2 ", "msgtype": "textcard", "agentid": 1000002, "textcard": { "title": "服务异常告警", "description": content, "url": "URL", "btntxt": "更多" }, "safe": 0 } rep = self.s.post(url, data=json.dumps(form_data).encode('utf-8'), headers=header) if rep.status_code != 200: print("request failed.") return return json.loads(rep.content)
然后就可以通过 send_msg 函数发送消息了。
wechat = WeChatPub() now = datetime.datetime.now() timenow = now.strftime('%Y年%m月%d日 %H:%M:%S') wechat.send_msg(f"<div class=\"gray\">{timenow}</div> <div class=\"normal\">阿里云 cookie 已失效</div><div class=\"highlight\">请尽快更换新的 cookie</div>")
只要你的企业微信没有关闭通知的权限,那你的手机立马就会弹出这个告警信息。
简单几步就对接了企业微信,实现了手机的实时告警功能,推荐有企业微信的同学使用。
当然一定有更多,更好用的实现方法,我只是我选择了其中一种。