通过shell脚本和企业微信实现报警功能(完整版)

最终效果如图(GIF太大了 就截了两张图)

#!/bin/sh

expireTime=7200

dbFile="db.json"

corpid=xxx
corpsecret=xxx

touser="xxx"
toparty="xxx"
agentid="xxx"
content="服务器快崩了,你还在这里吟诗作对?"

# s 为秒,m 为 分钟,h 为小时,d 为日数  
interval=1s

## 发送报警信息
sendMsg(){
    if [ ! -f "$dbFile" ];then
            touch "$dbFile"
    fi

    # 获取token
    req_time=`jq '.req_time' $dbFile`
    current_time=$(date +%s)
    refresh=

你可能感兴趣的:(性能,Linux,工具,shell,服务器监控,运维,微信报警)