溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

laravel5異常及時通知

發(fā)布時間:2020-06-18 23:46:20 來源:網(wǎng)絡(luò) 閱讀:1481 作者:ttlxihuan 欄目:開發(fā)技術(shù)

項目上線后,都會使用一些異常監(jiān)控,當(dāng)然很多時候監(jiān)控是有限制的,比如要監(jiān)控PHP異常,類似這種一般都在輸出人性化內(nèi)容而不是直接輸出錯誤內(nèi)容,很多時候需要捕捉這類異常來進(jìn)行代碼調(diào)整。當(dāng)然也可以定期去查看日志。


laravel5支持自定義異常處理,給這種需求提供了方便,我們完全可以擴(kuò)展異常處理,通過發(fā)送郵件或短信。

打開 app/Exceptions/Handler.php  文件,修改 render 函數(shù)代碼,增加發(fā)送郵件通知功能:

if (!$e instanceof \Symfony\Component\Debug\Exception\FlattenException) {
    $e = \Symfony\Component\Debug\Exception\FlattenException::create($e);
}
$exception = new \Symfony\Component\Debug\ExceptionHandler();
$content = $exception->getContent($e);
$css = $exception->getStylesheet($e);
\Mail::queue('errors.mail', [
    'url' => $request->fullUrl(),
    'request' => $request->all(),
    'method' => $request->getMethod(),
    'header' => $request->header(),
    'content' => $content,
    'css' => $css
        ], function ($message) {
    $message->to('name@admin.com')
            ->cc('name1@admin.com')
            ->subject('程序異常');
});

原來的

return parent::render($request, $e);

是返回異常內(nèi)容或403頁面的,如果想頁面返回更友好,可以去掉這個代碼改成其它內(nèi)容返回,可直接使用如形式的代碼:

return response('服務(wù)器累了,稍后再試!');


郵件模板:

<HTML>
    <HEAD>
        <TITLE>系統(tǒng)異常,請及時維護(hù)!</TITLE>
        <meta http-equiv="content-type" content="text/html; charset=utf-8">
        <STYLE>
            html{color:#000;background:#FFF;}
            body,div,dl,dt,dd,ul,ol,li,h2,h3,h4,h5,h6,h7,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
            table{border-collapse:collapse;border-spacing:0;}
            fieldset,img{border:0;}
            address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}
            li{list-style:none;}caption,th{text-align:left;}
            q:before,q:after{content:'';}
            abbr,acronym{border:0;font-variant:normal;}
            sup{vertical-align:text-top;}
            sub{vertical-align:text-bottom;}
            input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}
            input,textarea,select{*font-size:100%;}
            legend{color:#000;}
            html { background: #eee; padding: 10px }
            img { border: 0; }
            #sf-resetcontent { width:970px; margin:0 auto; }
            {!!$css!!}
        </style>
    </HEAD>
    <BODY>
        <h3>請求地址:</h3>
        {{$url}} &nbsp;&nbsp;&nbsp;
        <h3>請求方式:</h3>
        {{$method}}
        <h3>請求參數(shù):</h3>
        <pre>
            {{var_export($request, true)}}
        </pre>
        <h3>請求頭信息:</h3>
        <pre>
            {{var_export($header, true)}}
        </pre>
        <h3>異常內(nèi)容:</h3>
        <pre>
            {!!$content!!}
        </pre>
    </BODY>
</HTML>


注意:郵件是通過隊列發(fā)送的,以減少頁面響應(yīng)速度,實際使用時需要開啟隊列處理命令。


開啟隊列處理命令方法:

  1. 直接添加定時命令到 crontab

    crontab -e
    * * * * * php artisan queue:work 1>> /dev/null 2>&1  #啟動隊列監(jiān)聽
  2. 寫到框架的 schedule 中,然后通過 schedule 模擬crontab定時處理內(nèi)部所有命令

    打開 app/Console/Kernel.php 文件在 schedule 函數(shù)下添加代碼:

    //監(jiān)聽隊列

    $schedule->command('queue:work',$parameters)
        ->everyMinute()
        ->withoutOverlapping();

    然后添加定時命令:

    crontab -e
    * * * * * php artisan schedule:run 1>> /dev/null 2>&1   #啟動schedule


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI