marothyzsolt/laravel-new-relic
最新稳定版本:2.0.2
Composer 安装命令:
composer require marothyzsolt/laravel-new-relic
包简介
Laravel Log Handler for New Relic
README 文档
README
Installation
You can install the package via composer:
composer require marothyzsolt/laravel-new-relic
Usage
Change config/logging.php file with the following code:
'single' => [ 'driver' => env('APP_ENV') === 'local' ? 'single' : 'custom', 'via' => NewRelicLogger::class, 'path' => storage_path('logs/laravel.log'), 'level' => env('LOG_LEVEL', 'debug'), ],
You have to specify these the environment variables:
NEW_RELIC_APP_NAME="app-name" NEW_RELIC_LICENSE_KEY="newrelic-license-key-here"
Custom Extra Data
You can add more data to send to New Relic. Firstly publish the config file.
php artisan vendor:publish --provider="MarothyZsolt\LaravelNewRelic\LaravelNewRelicServiceProvider"
Now you see the config file structure, and you can extend the Closure.
'extra_data' => function (?Request $request, ?Throwable $throwable): array { return [ 'fingerprint' => $request->fingerprint(), ]; }
Detailed Exception Logging (Optional)
If you want to log exceptions with stacktrace as well, you can use the following. Extends the app/Exceptions/Handler.php
public function register() { $this->reportable(function (Throwable $e) { app(\App\Logging\NewRelicLogger::class)->throwable($e); }); }
Testing
composer test
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email zsolt@marothy.me instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 3.96k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-08-13