intersvyaz / yii-sentry
Sentry 组件和 LogRoute 用于 Yii1
1.0.5
2018-08-27 06:18 UTC
Requires
- php: >=5.5.0
- bower-asset/raven-js: ^3.26
- sentry/sentry: ^1.8
- yiisoft/yii: ~1.1.15
Requires (Dev)
- phpunit/phpunit: ~4.5
README
Yii 框架的 Sentry 组件和日志路由。
需求
- Yii 框架 > 1.1.15(未测试其他框架)
- Sentry 账户 或您的自己的 Sentry 服务器
下载
composer require intersvyaz/yii-sentry
配置
main.php
... 'preload' => [ ... 'sentry', ], ... 'components' => [ 'sentry' => [ 'class' => Intersvyaz\YiiSentry\SentryComponent::class, 'dsn' => 'https://X1:X2@host.com/2', 'useRavenJs' => true, 'ravenJsPlugins' => ['jquery'], 'enabled' => !YII_DEBUG, ], ... 'log' => [ 'class' => 'CLogRouter', 'routes' => [ ... [ 'class' => Intersvyaz\YiiSentry\SentryLogRoute::class, 'levels' => 'error, warning', 'except' => 'exception.CHttpException.404, exception.CHttpException.400, exception.CHttpException.403', ], ], ], ], ...