yii2 日誌自動傳送到釘釘 實時監控服務是否執行正常

alex丶sun發表於2019-02-16

yii2-dingtalk-exception

說明

yii2 日誌自動傳送到釘釘 實時監控服務是否執行正常

安裝

composer require saviorlv/yii2-dingtalk-exception

配置

在使用本擴充套件之前,你需要去 群機器人 獲取相關資訊。

使用

在config/main.php配置檔案中定義component配置資訊

`components` => [
    ......
    `log` => [
                `traceLevel` => YII_DEBUG ? 3 : 0,
                `targets` => [
                    [
                        `class` => `yiilogFileTarget`,
                        `levels` => [`error`, `warning`],
                    ],
                    [
                        `class` => `SaviorlvLogExceptionTarget`,
                        `levels` => [`error`, `warning`],
                        `options` => [
                            `accessToken` => `xxxxxxxx`,
                            `isAtAll` => false,
                            `atMobiles` => [`136xxxx5134`]
                        ],
                    ],
                ],
            ],
    ......
]

引數

`isAtAll` => true @所有人

`atMobiles` => [`136xxxx5134`,`136xxxx5133`] @部分人員

相關文章