yii2-dingtalk-exception
说明
yii2 日志自动发送到钉钉 实时监控服务是否运行正常
安装
composer require saviorlv/yii2-dingtalk-exception
配置
在使用本扩展之前,你需要去 群机器人 获取相关信息。
使用
在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']
@部分人员
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。