shell脚本告警

shell脚本告警,第1张

[root@mysql-m-201 ~]# cat feishu.py 
#!/usr/bin/python3
import requests
import json
import sys
import os
import datetime
from datetime import datetime
# 你复制的webhook地址粘贴进url内
url = "https://open.feishu.cn/open-apis/bot/v2/hook/530dffcf-09e9-48ae-9748-7ffccb0fd641"

def send_message(message):
    payload_message = {
        "msg_type": "text",
        "content": {
            "text": message
        }
    }
    headers = {
        'Content-Type': 'application/json'
    }

    response = requests.request("POST", url, headers=headers, data=json.dumps(payload_message))
    return response


if __name__ == '__main__':
    dt = datetime.now() 
    text = """
标题: jia 服务异常
"""
    result = text + dt.strftime('故障时间:%Y年%m月%d日 %H:%M:%S')
    send_message(result)
[root@mysql-m-201 ~]# cat test.sh 
#!/bin/bash
jia=`curl -X HEAD -I -s  http://192.168.17:8081/login.jsp | grep "HTTP/1.1 200"| wc -l`
if [ $jia != 1 ];then
echo "jia 服务异常"
python3 /root/feishu.py
fi

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/732767.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-27
下一篇 2022-04-27

发表评论

登录后才能评论

评论列表(0条)

保存