intersvyaz/yii-sentry

Sentry 组件和 LogRoute 用于 Yii1

1.0.5 2018-08-27 06:18 UTC

This package is auto-updated.

Last update: 2024-09-08 05:27:03 UTC


README

Yii 框架的 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',
			],
		],
    ],
],
...