phippsytech/monologsnag
Composer 安装命令:
composer require phippsytech/monologsnag
包简介
A handler for monolog that logs to LogSnag
README 文档
README
MonoLogSnag is a handler for Monolog that pushes your logs to LogSnag, a use-case agnostic event tracking and analytics platform.
Installation
To install MonoLogSnag, run the following command:
composer require phippsytech/monologsnag
Initialising MonoLogSnag
To use MonoLogSnag with Monolog you need to initialise it like this:
use Monolog\Logger; use PhippsyTech\MonoLogSnag\Handler as MonoLogSnagHandler; $token = <insert your api key here>; $project = "test"; $channel = "test"; // Create a log channel $log = new Logger($channel); // Push the MonoLogSnagHandler to the log channel $monoLogSnagHandler = new MonoLogSnagHandler($apiKey, $project); $log->pushHandler($monoLogSnagHandler);
To make things easier to read, in all following code snippets I will refer to the above code with // --> Initialise MonoLogSnag here <--
Basic Usage
This will send a message with an empty description labeled "Hello World" to LogSnag
// --> Initialise MonoLogSnag here <-- // Send log to LogSnag $log->info('Hello World');
Adding Description
In Monolog you can add extra data in the logging context. This is in the form of an array.
MonoLogSnag converts the array into Markdown and sends it via the description:
// --> Initialise MonoLogSnag here <-- // Send log to LogSnag $log->info('A customer just placed an order', [ 'Product' => "Happy Thoughts", 'Price' => 1.95 ]);
Adding Tags
LogSnag lets you include up to 5 tags on a log entry. MonoLogSnag uses the extra part of a $record to hold these tags. You can then filter on these tags in LogSnag.
To add the tags we use the pushProcessor() to modify the $record->extra array.
In the following example we are adding the log level as a tag named level
// --> Initialise MonoLogSnag here <-- // Add a tag called level that contains the current log level. $log->pushProcessor(function ($record) { $record->extra['level'] = $record->level->name; return $record; }); // Send log to LogSnag. This log is recording a page visit. $page = $_SERVER['REQUEST_URI'] ?? 'unknown'; $log->info('Page Visit', [ 'page' => $_SERVER['REQUEST_URI'] ]);
Log Level Icons and Notifications
Currently all log levels have notify: true.
The following icons are used for each log level:
debug: 😶
info: 🙂
notice: 🤔
warning: 🧐
error: 😠
critical: 😡
alert: 🤬
emergency: 💀
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Looking Ahead
I plan to add the ability to override the default icon and notify settings in the future. If you'd like to see this happen sooner, please get in touch or consider submitting a pull request with the feature added.
Authors and acknowledgments
Michael Phipps (Author) - Twitter
LogSnag - Website - GitHub - Twitter
Shayan Taslim - Twitter
Monolog - Website - GitHub
Jordi Boggiano - Twitter
License
MonoLogSnag is licensed under the MIT License. See LICENSE for more information.
phippsytech/monologsnag 适用场景与选型建议
phippsytech/monologsnag 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 12 次下载、GitHub Stars 达 0, 最近一次更新时间为 2023 年 01 月 02 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「log」 「logging」 「psr-3」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 phippsytech/monologsnag 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 phippsytech/monologsnag 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 phippsytech/monologsnag 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A Zend Framework module that sets up Monolog for logging in applications.
PSR-3 compatible logger with dynamic file naming and hourly rotation, powered by Monolog
Chronolog is a tool that allows you to send logs to files, sockets, mailboxes, databases, etc.
Asynchronous Sentry for Symfony - Fire and forget
Wide logging implementation for PHP - one comprehensive, context-rich event per request
Stackdriver handler for Monolog (codeinternetapplications/monolog-stackdriver Fork).
统计信息
- 总下载量: 12
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 11
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-01-02