mamatveev / yii2-useful-log-targets
Yii2 log targets: Sentry (Raven_Client) and ElasticSearch
Package info
github.com/m-matveev/yii2-useful-logtargets
pkg:composer/mamatveev/yii2-useful-log-targets
1.0.4
2023-11-05 11:06 UTC
Requires
- sentry/sentry: ^1.10
- yiisoft/yii2-elasticsearch: ~2.1.0
This package is not auto-updated.
Last update: 2026-03-03 17:34:25 UTC
README
INSTALLATION
composer require mamatveev/yii2-useful-log-targets --dev
Add a component configuration in the application config:
'log' => [ 'targets' => [ //sentry log target [ 'class' => 'mamatveev\yii2LogTargets\SentryLogTarget', 'levels' => ['error', 'warning'], 'dsn' => 'your_sentry_dsn', ], //elasticSearch log target. connection should be configured [ 'class' => 'mamatveev\yii2LogTargets\ElasticLogTarget', 'levels' => ['info', 'error', 'warning'], 'index' => 'oplata-fssp', 'type' => 'oplata-fssp-applog', 'logVars' => ['_GET', '_POST'], 'except' => [ 'yii\web\HttpException:404', 'yii\db\Connection::open', ], ] ], ],