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

yii2-dingtalk-exception

說明

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

安裝

composer require saviorlv/yii2-dingtalk-exception

配置

在使用本擴展以前,你須要去 羣機器人 獲取相關信息。php

使用

在config/main.php配置文件中定義component配置信息
'components' => [
    ......
    'log' => [
                'traceLevel' => YII_DEBUG ? 3 : 0,
                'targets' => [
                    [
                        'class' => 'yii\log\FileTarget',
                        'levels' => ['error', 'warning'],
                    ],
                    [
                        'class' => 'Saviorlv\Log\ExceptionTarget',
                        'levels' => ['error', 'warning'],
                        'options' => [
                            'accessToken' => 'xxxxxxxx',
                            'isAtAll' => false,
                            'atMobiles' => ['136xxxx5134']
                        ],
                    ],
                ],
            ],
    ......
]

參數

'isAtAll' => true @全部人

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

相關文章
相關標籤/搜索