luckyshopteam / yii2-sentry
Yii2 sentry
Installs: 1 746
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 0
Open Issues: 0
Requires
- sentry/sdk: 2.0.4
README
Установка
composer require luckyshopteam/yii2-sentry @dev
Подключение
Подключите класс SentryComponent в компонентах приложения
'components' => [
'sentry' => [
'class' => luckyshopteam\sentry\SentryComponent::class,
'enabled' => true,
'dsn' => getenv('SENTRY_DSN'),
'environment' => YII_ENV, // if not set, the default is `production`
],
],
Добавьте класс SentryTarget в параметр 'targets' для компонента 'log'
'components' => [
'log' => [
'traceLevel' => YII_DEBUG ? 3 : 0,
'flushInterval' => 1,
'targets' => [
[
'class' => luckyshopteam\sentry\SentryTarget::class,
'exportInterval' => 1,
'levels' => ['error', 'warning'],
'except' => [
'yii\web\HttpException:429', // TooManyRequestsHttpException
'yii\web\HttpException:401', // UnauthorizedHttpException
],
'userData' => ['id', 'email', 'role'],
],
]
],
],