cakephp-biztech/cake-sentry
Composer 安装命令:
composer require cakephp-biztech/cake-sentry
包简介
Sentry plugin for CakePHP3
README 文档
README
CakePHP integration for Sentry.
Requirements
- PHP 7.1+
- CakePHP 3.6+
- and Sentry account
Installation
With composer install.
composer require cakephp-biztech/cake-sentry
Usage
Set config files.
Write your sentry account info.
// in `config/app.php` return [ 'Sentry' => [ 'dsn' => YOUR_SENTRY_DSN_HERE ] ];
Loading plugin.
In Application.php
public function bootstrap() { parent::bootstrap(); $this->addPlugin(\Biztech\CakeSentry\Plugin::class); }
Or use cake command.
bin/cake plugin load Biztech/CakeSentry --bootstrap
That's all! 🎉
Advanced Usage
Ignore noisy exceptions
You can filter out exceptions that make a fuss and harder to determine the issues to address(like PageNotFoundException)
Set exceptions not to log in Error.skipLog.
ex)
// in `config/app.php` 'Error' => [ 'skipLog' => [ NotFoundException::class, MissingRouteException::class, MissingControllerException::class, ], ]
ref: CakePHP Cookbook https://book.cakephp.org/3.0/en/development/errors.html#error-exception-configuration
Set Options
All configure written in Configure::write('Sentry') will be passed to Sentry\init().
Please check Sentry's official document about configuration and about php-sdk's configuraion.
In addition to it, CakeSentry provides event hook to set dynamic values to options more easily if you need.
Client dispatch CakeSentry.Client.afterSetup event before sending error to sentry.
Subscribe the event with your logic.
ex)
use Cake\Event\Event; use Cake\Event\EventListenerInterface; class SentryOptionsContext implements EventListenerInterface { public function implementedEvents() { return [ 'CakeSentry.Client.afterSetup' => 'setServerContext', ]; } public function setServerContext(Event $event) { /** @var Client $subject */ $subject = $event->getSubject(); $options = $subject->getHub()->getClient()->getOptions(); $options->setEnvironment('test_app'); $options->setRelease('2.0.0@dev'); } }
And in config/bootstrap.php
EventManager::instance()->on(new SentryOptionsContext());
Send more context
Client dispatch CakeSentry.Client.beforeCapture event before sending error to sentry.
You can set context with EventListener.With facade sentryConfigureScope() etc, or with $event->getContext()->getHub() to access and set context.Calling Raven_Client's API or returning values, error context will be sent.
Now, cake-sentry supports to get Request instance in implemented event via $event->getSubject()->getRequest().
See also the section about context in offical doc.
ex)
use Cake\Event\Event; use Cake\Event\EventListenerInterface; use Cake\Http\ServerRequest; use Cake\Http\ServerRequestFactory; use Sentry\State\Scope; use function Sentry\configureScope as sentryConfigureScope; class SentryErrorContext implements EventListenerInterface { public function implementedEvents() { return [ 'CakeSentry.Client.beforeCapture' => 'setContext', ]; } public function setContext(Event $event) { if (PHP_SAPI !== 'cli') { /** @var ServerRequest $request */ $request = $event->getData('request') ?? ServerRequestFactory::fromGlobals(); $request->trustProxy = true; sentryConfigureScope(function (Scope $scope) use ($request, $event) { $scope->setTag('app_version', $request->getHeaderLine('App-Version') ?: 1.0); $exception = $event->getData('exception'); if ($exception) { assert($exception instanceof \Exception); $scope->setTag('status', $exception->getCode()); } $scope->setUser(['ip_address' => $request->clientIp()]); $scope->setExtras([ 'foo' => 'bar', 'request attributes' => $request->getAttributes(), ]); }); } } }
And in config/bootstrap.php
EventManager::instance()->on(new SentryErrorContext());
Collecting User feedback
In CakeSentry.Client.afterCapture event, you can get last event ID.
See also offcial doc.
ex)
class SentryErrorContext implements EventListenerInterface { public function implementedEvents() { return [ 'CakeSentry.Client.afterCapture' => 'callbackAfterCapture', ]; } public function callbackAfterCapture(Event $event) { $lastEventId = $event->getData('lastEventId'); } }
Contributing
Pull requests and feedback are very welcome :) on GitHub at https://github.com/ishan-biztech/cake-sentry
License
The plugin is available as open source under the terms of the MIT License.
cakephp-biztech/cake-sentry 适用场景与选型建议
cakephp-biztech/cake-sentry 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.39k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2021 年 03 月 04 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 cakephp-biztech/cake-sentry 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 cakephp-biztech/cake-sentry 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 1.39k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-03-04