基于php 进行每半小时钉钉预警

前言

业务场景:监控当前业务当出现并发情况时技术人员可以可以及时处理

使用技术栈: laravel+redis

半小时触发一次报警信息实现思路

1、xshell脚本 

具体参数就不详细解释了,想要详细了解可以自行百度

curl -H "Content-Type:application/json" -H "connection:Keep-Alive" -s -X Post "预警接口"
2、laravel 任务调度

任务调度 | 综合话题 |《Laravel 5.6 中文文档 5.6》| Laravel China 社区 (learnku.com)

定时任务

现在Kernel 文件书写定时任务,定时任务名称需要上下一致

基于php 进行每半小时钉钉预警_第1张图片

预警逻辑

在Commands 中书写该逻辑

当预警人数占当前时段总人数35% 时触发钉钉预警 该逻辑 根据业务自行书写

钉钉预警实现思路

1、获取token和secret

保存后会获得 webhookurl 与 secret

基于php 进行每半小时钉钉预警_第2张图片2、书写逻辑
timestamp = time() * 1000;
        //加签
        $str = $this->timestamp."\n". $this->listenSecret;
        $sign =  hash_hmac("sha256",$str ,$this->listenSecret,true);
        $sign = base64_encode($sign);
        $this->sign = $sign ;
        //返回链接
        $webhookurl = $this->url.'?access_token='.$this->listenToken. '×tamp='.$this->timestamp.'&sign='.urlencode($this->sign);
        $this->webhookurl = $webhookurl;
    }



    //发送text文本信息
    public function text($content = '', $mobiles = [], $userIds = [], $isAtAll = true)
    {
        $sendContent = [
            "msgtype" => "text",
            "text" => [
                "content" => $content
            ],
            "at" => [
                "atMobiles" => $mobiles,
                "atUserIds" => $userIds,   //不是钉钉管理员无法获取userIds
                "isAtAll" => $isAtAll
            ]
        ];
        $res = $this->_curl_post_json($this->webhookurl, $sendContent);
        return $res;
    }

    //发送json数据
    public function _curl_post_json($url, $data = array())
    {
        $curl = curl_init($url);
        curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
        curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 5);
        curl_setopt($curl, CURLOPT_POST, 1);
        curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode($data, 320));
        curl_setopt($curl, CURLOPT_HEADER, 0);
        curl_setopt($curl, CURLOPT_HTTPHEADER, ['Content-Type: application/json']);
        curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
        $res = curl_exec($curl);
        curl_close($curl);
        return $res;
    }
}

也可以将上述配置文件封装到Cofig 配置文件 自行调用 实例只发送了text 文本消息 具体案例信息查看官方文档进行配置 本文章仅限提供思路

你可能感兴趣的:(php,钉钉)