urmaul / yii2-slack-log
Yii2 log route that pushes logs to Slack channel.
Installs: 35 609
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 3
Forks: 1
Open Issues: 0
Requires
- urmaul/httpclient: ~1.1
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2024-11-09 19:21:51 UTC
README
Yii2 log route that pushes logs to Slack channel.
How to install
-
Add "Incoming WebHook" to slack.
-
Attach log route.
composer require urmaul/yii2-slack-log '~2.0'
-
Add this route to log targets.
'log' => [ 'targets' => [ [ 'class' => 'urmaul\yii2\log\slack\Target', 'levels' => ['error'], // Send message on errors 'except' => ['yii\web\HttpException:403', 'yii\web\HttpException:404'], // ...except 403 and 404 'enabled' => !YII_DEBUG, // No not send in debug mode 'webhookUrl' => 'YOUR_WEBHOOK_URL_FROM_SLACK', //'username' => 'MYBOT', // Bot username. Defaults to app name //'icon_url' => null, // Bot icon URL //'icon_emoji' => ':beetle:', // Bot icon emoji //'prefixText' => '', // Any text prefix. As a sample, you can mention @yourself. ], ], ],