您好,登錄后才能下訂單哦!
項目上線后,都會使用一些異常監控,當然很多時候監控是有限制的,比如要監控PHP異常,類似這種一般都在輸出人性化內容而不是直接輸出錯誤內容,很多時候需要捕捉這類異常來進行代碼調整。當然也可以定期去查看日志。
laravel5支持自定義異常處理,給這種需求提供了方便,我們完全可以擴展異常處理,通過發送郵件或短信。
打開 app/Exceptions/Handler.php 文件,修改 render 函數代碼,增加發送郵件通知功能:
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);
是返回異常內容或403頁面的,如果想頁面返回更友好,可以去掉這個代碼改成其它內容返回,可直接使用如形式的代碼:
return response('服務器累了,稍后再試!');
郵件模板:
<HTML> <HEAD> <TITLE>系統異常,請及時維護!</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}} <h3>請求方式:</h3> {{$method}} <h3>請求參數:</h3> <pre> {{var_export($request, true)}} </pre> <h3>請求頭信息:</h3> <pre> {{var_export($header, true)}} </pre> <h3>異常內容:</h3> <pre> {!!$content!!} </pre> </BODY> </HTML>
注意:郵件是通過隊列發送的,以減少頁面響應速度,實際使用時需要開啟隊列處理命令。
開啟隊列處理命令方法:
直接添加定時命令到 crontab
crontab -e
* * * * * php artisan queue:work 1>> /dev/null 2>&1 #啟動隊列監聽
寫到框架的 schedule 中,然后通過 schedule 模擬crontab定時處理內部所有命令
打開 app/Console/Kernel.php 文件在 schedule 函數下添加代碼:
//監聽隊列
$schedule->command('queue:work',$parameters) ->everyMinute() ->withoutOverlapping();
然后添加定時命令:
crontab -e
* * * * * php artisan schedule:run 1>> /dev/null 2>&1 #啟動schedule
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。