mamatveev/yii2-useful-log-targets

Yii2 log targets: Sentry (Raven_Client) and ElasticSearch

1.0.4 2023-11-05 11:06 UTC

This package is not auto-updated.

Last update: 2024-04-16 08:46:51 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',
                    ],
                ]
            ],
        ],