salines/cakephp-airbrake
Composer 安装命令:
composer require salines/cakephp-airbrake
包简介
CakePHP 5.x plugin for Airbrake error tracking and exception monitoring
README 文档
README
A native CakePHP 5.x plugin for Airbrake error tracking and exception monitoring. Automatically captures and reports exceptions, PHP errors, and log messages to Airbrake using API v3. This plugin does not depend on the legacy phpairbrake SDK.
No external dependencies - uses CakePHP's built-in HTTP client.
Features
- Native implementation using Airbrake API v3
- No phpairbrake SDK dependency
- Automatic exception and error tracking
- Seamless integration with CakePHP's error handling system
- Log engine for sending log messages to Airbrake
- Request context (URL, HTTP method, route, user agent, etc.)
- CakePHP route information (controller, action, prefix)
- User identification support (CakePHP Authentication plugin)
- Sensitive data filtering (passwords, tokens, etc.)
- Support for self-hosted Airbrake (Errbit)
- Environment-based configuration
- Zero external dependencies
Requirements
- PHP 8.1 or higher
- CakePHP 5.x
- Airbrake account (or self-hosted Errbit)
Installation
Install the plugin using Composer:
composer require salines/cakephp-airbrake
Migration from phpairbrake
If your application previously used the phpairbrake SDK, you can remove it from composer.json and keep the same Airbrake credentials. This plugin provides its own notifier (CakeAirbrake\Notifier) and sends notices directly using CakePHP's HTTP client.
Configuration
1. Load the Plugin
Add the plugin to your src/Application.php:
use CakeAirbrake\CakeAirbrakePlugin; public function bootstrap(): void { parent::bootstrap(); $this->addPlugin(CakeAirbrakePlugin::class); }
2. Configure Airbrake
Add the Airbrake configuration to your config/app.php:
'Airbrake' => [ 'projectId' => env('AIRBRAKE_PROJECT_ID'), 'projectKey' => env('AIRBRAKE_PROJECT_KEY'), 'environment' => env('APP_ENV', 'production'), 'appVersion' => '1.0.0', 'host' => 'https://api.airbrake.io', // Change for self-hosted 'enabled' => true, 'rootDirectory' => ROOT, 'keysBlocklist' => [ '/password/i', '/secret/i', '/token/i', '/authorization/i', '/api_key/i', ], ],
3. Configure Error Logger
To automatically send all exceptions and errors to Airbrake, configure the error logger in config/app.php:
'Error' => [ 'errorLevel' => E_ALL, 'exceptionRenderer' => \Cake\Error\Renderer\WebExceptionRenderer::class, 'skipLog' => [], 'log' => true, 'trace' => true, 'logger' => \CakeAirbrake\Error\AirbrakeErrorLogger::class, ],
4. Configure Log Engine (Optional)
To send log messages to Airbrake, add the log engine configuration:
'Log' => [ 'airbrake' => [ 'className' => 'CakeAirbrake.Airbrake', 'levels' => ['warning', 'error', 'critical', 'alert', 'emergency'], ], ],
The log engine automatically uses the global Airbrake configuration.
Environment Variables
You can configure the plugin using environment variables:
AIRBRAKE_PROJECT_ID=123456 AIRBRAKE_PROJECT_KEY=your-project-key AIRBRAKE_HOST=https://api.airbrake.io AIRBRAKE_ENABLED=true APP_ENV=production
Usage
Automatic Error Tracking
Once configured with the error logger, all uncaught exceptions and PHP errors will automatically be sent to Airbrake.
Manual Exception Reporting
You can manually send exceptions to Airbrake:
use CakeAirbrake\Notifier; use Cake\Core\Configure; try { // Your code } catch (\Exception $e) { $notifier = new Notifier(Configure::read('Airbrake')); $notifier->notify($e); }
Using the Log Engine
Send log messages to Airbrake:
use Cake\Log\Log; Log::error('Something went wrong', ['scope' => 'airbrake']); Log::critical('Database connection failed'); // With exception context Log::error('Operation failed', [ 'exception' => $e, 'user_id' => 123, ]);
Adding Custom Context
You can add custom context to your error reports using filters:
use CakeAirbrake\Notifier; use Cake\Core\Configure; $notifier = new Notifier(Configure::read('Airbrake')); $notifier->addFilter(function ($notice) { $notice['context']['customField'] = 'customValue'; $notice['params']['orderId'] = 12345; return $notice; }); $notifier->notify($exception);
Filtering Notices
You can prevent certain notices from being sent by returning null from a filter:
$notifier->addFilter(function ($notice) { // Don't send 404 errors if (str_contains($notice['errors'][0]['type'], 'NotFoundException')) { return null; } return $notice; });
Setting Severity
You can set the severity level for notices:
$notifier = new Notifier(Configure::read('Airbrake')); $notice = $notifier->buildNotice($exception); $notice['context']['severity'] = 'critical'; // debug, info, notice, warning, error, critical $notifier->sendNotice($notice);
Testing With webhook.site
You can test delivery without a real Airbrake project by sending notices to a webhook.site URL.
- Create a new endpoint at https://webhook.site and copy the unique URL.
- Configure a custom notices URL:
'Airbrake' => [ 'projectId' => 1, 'projectKey' => 'test-key', 'customNoticesUrl' => 'https://webhook.site/your-unique-id', ],
- Trigger a test notice:
use CakeAirbrake\Notifier; use Cake\Core\Configure; $notifier = new Notifier(Configure::read('Airbrake')); $notifier->notify(new \RuntimeException('Webhook test notice'));
Open the webhook.site page to inspect the JSON payload.
Configuration Options
| Option | Type | Default | Description |
|---|---|---|---|
projectId |
int | null | Your Airbrake project ID (required) |
projectKey |
string | null | Your Airbrake project key (required) |
environment |
string | 'production' | Environment name |
appVersion |
string | null | Application version |
host |
string | 'https://api.airbrake.io' | Airbrake API host |
enabled |
bool | true | Enable/disable Airbrake reporting |
keysBlocklist |
array | [...] | Regex patterns for sensitive keys to filter |
rootDirectory |
string | ROOT | Root directory for backtrace filtering |
httpClientOptions |
array | ['timeout' => 10] | Options for CakePHP HTTP Client |
Self-Hosted Airbrake (Errbit)
To use with a self-hosted Airbrake server like Errbit:
'Airbrake' => [ 'projectId' => 1, 'projectKey' => 'your-api-key', 'host' => 'https://your-errbit-server.com', // ... other options ],
Filtering Sensitive Data
The plugin automatically filters sensitive data based on the keysBlocklist configuration. By default, it filters keys matching:
/password/i/secret/i/token/i/authorization/i/api_key/i/apikey/i/access_token/i
You can add your own patterns:
'keysBlocklist' => [ '/password/i', '/secret/i', '/credit_card/i', '/ssn/i', '/cvv/i', ],
Disabling in Development
You can disable Airbrake in development:
'Airbrake' => [ // ... other config 'enabled' => !Configure::read('debug'), ],
Or using environment variables:
AIRBRAKE_ENABLED=false
Notice Structure
The plugin sends notices to Airbrake in the following structure (API v3):
{
"errors": [{
"type": "RuntimeException",
"message": "Something went wrong",
"backtrace": [...]
}],
"context": {
"notifier": {"name": "cakephp-airbrake", "version": "1.0.0"},
"environment": "production",
"hostname": "server-01",
"os": "Linux",
"language": "PHP 8.1.0",
"severity": "error",
"url": "https://example.com/users/123",
"httpMethod": "GET",
"route": "/Users/view",
"component": "Users",
"action": "view",
"user": {"id": 1, "name": "John", "email": "john@example.com"}
},
"environment": {...},
"params": {...},
"session": {...}
}
Testing
Run the tests:
composer install ./vendor/bin/phpunit
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add some amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
License
This project is licensed under the MIT License - see the LICENSE file for details.
Credits
salines/cakephp-airbrake 适用场景与选型建议
salines/cakephp-airbrake 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 0 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 01 月 16 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「cakephp」 「airbrake」 「errbit」 「exception-handling」 「error-monitoring」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 salines/cakephp-airbrake 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 salines/cakephp-airbrake 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 salines/cakephp-airbrake 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
CakePHP 4.x AdminLTE Theme.
Airbrake.io integration for Symfony
Laravel package for the Airbrake API, which supports Errbit
errbit/airbrake integration with php with psr-2
Airbrake (phpbrake) integration for Zend Framework 3 (ZF3)
Yii2 PHPBrake integration
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 29
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-01-16