美文网首页PHP实战PHP经验分享
通过swoole定时器监控服务的稳定性

通过swoole定时器监控服务的稳定性

作者: gogocheng | 来源:发表于2019-01-12 16:06 被阅读1次

    用linux的定时脚本去执行
    例如:
    netstat -anp | grep 9501 结合linux定时器 crontab
    但在crontab中,最小的时间粒度是1分钟,因此可以在swoole中来执行电视操作。swoole中的定时器最小的时间粒度是1秒
    通过swoole中的定时器来实现监控服务的稳定性

    编写监控服务的类

    /**
     * description   监控http和websocket服务
     * Class Server
     */
    class Server
    {
        const PORT = 9501;
    
        public function port ()
        {
            //shell命令
            $shell = 'netstat -anp | grep '.self::PORT;
            //执行shell
            $res = shell_exec($shell);
            echo $res;
        }
    }
     
    (new Server())->port();
    

    打印出的结果可以看到


    clipboard.png

    上图可以看到端口监听状态以及上面的一串字符(并非。。。。。)
    然后可以用
    netstat -anp | grep 9501 | grep LISTEN | wc -l
    来看打印出的结果能够匹配多少行


    clipboard.png

    接着可以再次使用该命令加以修改执行
    netstat -anp 2>/dev/null | grep 9501 | grep LISTEN | wc -l
    就可以看到匹配到多少行


    clipboard.png

    打印是1,说明服务开启,打印是0,说明服务关闭
    最后通过swoole定时器完善监控类编写

    /**
     * description   监控http和websocket服务
     * Class Server
     */
    class Server
    {
        const PORT = 9501;
     
        public function port ()
        {
            //shell命令
            $shell = 'netstat -anp 2>/dev/null | grep '.self::PORT.' | grep LISTEN | wc -l';
            //执行shell
            $res = shell_exec($shell);
            //判断服务执行或关闭
            if($res == 0){
                //todo   发送服务关闭报警提醒
                echo date('Ymd h:i:s').'error'.PHP_EOL;
            }else{
                echo date('Ymd h:i:s').'success'.PHP_EOL;
            }
        }
    }
     
     
    //swoole定时器,每2秒执行
    swoole_timer_tick(2000,function ($timer_id){
        (new Server())->port();
    });
    

    运行代码可以看到监控服务是否正常运行


    clipboard.png

    也可以执行后台运行来保存监控类的日志
    执行
    nohup php server.php > /var/www/html/swoole/swooletp/script/bin/monitor/log.tex


    clipboard.png
    打开log.text就可以看到监控类打印的日志
    clipboard.png

    相关文章

      网友评论

        本文标题:通过swoole定时器监控服务的稳定性

        本文链接:https://www.haomeiwen.com/subject/efdcdqtx.html