supersixtwo/dblog
Composer 安装命令:
composer require supersixtwo/dblog
包简介
Lightweight Laravel package for writing custom logs and error messages to a database.
关键字:
README 文档
README
DBlog is a lightweight and simple Laravel Package that allows you write custom logs and error messages to a database table.
Written to mirror the Laravel Logging conventions, DBlog provides 8 logging levels defined in RFC 5424 and the ability to add an optional context array to each log.
NOTE: This package DOES NOT integrate with the Laravel / Monolog logging system and does not capture system level events. It's purpose is to be used to capture your own custom log needs.
Installation
Via Composer:
$ composer require supersixtwo/dblog
Then add the service provider in config/app.php:
Supersixtwo\Dblog\DBlogServiceProvider::class,
And the alias in config/app.php:
'DBlog' => Supersixtwo\Dblog\DBlogClass::class,
Re-run the autoload:
$ composer dump-autoload
Publish the migrations:
$ php artisan vendor:publish
Run the migrations to install the tables in the database:
$ php artisan migrate
Usage
Logging Messages
We've provided DBlog with a familiar interface, mirroring Laravel's own built-in logging methods. These follow the same RFC 5424 defined logging levels including: emergency, alert, critical, error, warning, notice, info, and debug.
Include the DBlog at the top of your class or model:
use DBlog;
Use one of the 8 helper methods in your logic:
DBlog::emergency($msg); DBlog::alert($msg); DBlog::critical($msg); DBlog::error($msg); DBlog::warning($msg); DBlog::notice($msg); DBlog::info($msg); DBlog::debug($msg);
Contextual Information
In addition to logging text based messages, you can also an array of contextual information to the logging methods. This contextual data will converted to a json array and stored in separate column.
DBlog::info('New User Creation', ['id' => 45, 'created_by' => 'jdoe']);
DBlog Model and Table
Model and Table Names
To avoid collisions and naming conflicts with the DBlog Facade or other tables, the database table can be accessed using the following:
- Model Name:
DBlogModel - Table Name:
dblogs
dblogs Table Columns
| Column | Type | Default Value | Nullable | Comments |
|---|---|---|---|---|
| id | int(10) unsigned | NO | ||
| level_id | int(11) | NO | The RFC 5424 log level id | |
| level_description | varchar(255) | NO | The RFC 5424 log level description | |
| message | text | NO | ||
| context | text | YES | ||
| created_at | timestamp | CURRENT_TIMESTAMP | NO |
Querying the Model
First, include the DBlogModel with the namespace:
use Supersixtwo\Dblog\DBlogModel;
Then via Query Builder:
$logs = DB::table('dblogs')->get();
or via Eloquent:
$logs = DBlogModel::all();
Change log
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 appsupport@supersixtwo.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.
Acknowledgements
This package is heavily inspired by the Monolog Logging Library.
supersixtwo/dblog 适用场景与选型建议
supersixtwo/dblog 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 44 次下载、GitHub Stars 达 3, 最近一次更新时间为 2015 年 09 月 20 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「Laravel-Database」 「laravel-logging」 「custom-logging」 「database-logging」 「supersixtwo」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 supersixtwo/dblog 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 supersixtwo/dblog 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 supersixtwo/dblog 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A package to support logging via email in Laravel
SQL to Laravel Query Builder
Display the connected database information in console.
Laravel Logs.
Provides a System Log model and helpers for contextful logging with a FilamentPHP Resource panel generator
This is my package laravel-logging
统计信息
- 总下载量: 44
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 24
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-09-20