kirinnee/laravel-log-enricher
Composer 安装命令:
composer require kirinnee/laravel-log-enricher
包简介
Enrich Laravel logging for better structured logging
README 文档
README
Automatically adds contextual data into Laravel's logging.
This includes:
- Request Body
- Request Header
- Process ID
- Class, Method, Line and File of the line that was logged
- Laravel Information (Laravel version, PHP version)
- Session Information
- Memory Usage of the current thread
Installation
- Install the package
composer require kirinnee/laravel-log-enricher
- Add this package's LogEnhancer class to the tap option of your log channel in config/logging.php:
'production_stack' => [
'driver' => 'stack',
'tap' => [Kirinnee\LaravelLogEnricher\LogEnricher::class],
'channels' => ['daily', 'slack'],
],
- Generate config file to control behaviour
php artisan vendor:publish --tag=laravel-log-enricher-config
It has following configurations:
| Setting | Description | type |
|---|---|---|
request_details |
Enrich with Details of the request itself | bool |
request_data |
Enrich with Request Body | bool |
request_header |
Enrich with Request Headers | bool |
session_data |
Enrich with Session Data | bool |
memory_usage |
Enrich with the current thread's memory usage | bool |
app_details |
Enrich with Laravels' application details, such as Laravel version, PHP version, Config Cached, Route Cached | bool |
log_file_class_method_line |
Enrich with the Log caller's file, line, class and method | bool |
log_process_id |
Enrich with the current process ID | bool |
ignore_input_fields |
Fields to ignore in the request body (sensitivie fields). For example, passwords, etc | array |
Author
License
This project is licensed under the MIT License - see the LICENSE file for details
kirinnee/laravel-log-enricher 适用场景与选型建议
kirinnee/laravel-log-enricher 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 103 次下载、GitHub Stars 达 1, 最近一次更新时间为 2022 年 09 月 03 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 kirinnee/laravel-log-enricher 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 kirinnee/laravel-log-enricher 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 103
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 16
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-09-03