index0h/yii2-log
Composer 安装命令:
composer require index0h/yii2-log
包简介
Many Yii2 log targets
README 文档
README
Different Yii2 log transports
Now available
- ElasticsearchTarget
- LogstashFileTarget
- LogstashTarget
- RedisTarget
Installation
The preferred way to install this extension is through composer.
php composer.phar require --prefer-dist index0h/yii2-log "0.0.3"
or add line to require section of composer.json
"index0h/yii2-log": "0.0.3"
Usage
Common properties
$emergencyLogFile, default@app/logs/logService.log
Elasticsearch, Redis and Logstash - are external services, so if they down our logs must be stored in file.
For that ElasticsearchTarget, LogstashTarget, RedisTarget have option $emergencyLogFile. It's alias to
file where logs will be written on log service is down.
ElasticsearchTarget
Stores logs in elasticsearch. All logs transform to json, so you can simply watch them by kibana.
Extends yii\log\Target, more options see here
Example configuration
.... 'components' => [ 'log' => [ 'targets' => [ ['class' => 'index0h\\log\\ElasticsearchTarget'], ....
Properties
index, default 'yii' - Elasticsearch index name.type, default 'log' - Elasticsearch index type.componentName- Name of yii redis component.
LogstashFileTarget
Extends yii\log\FileTarget, more options see here
Example Yii configuration
.... 'components' => [ 'log' => [ 'targets' => [ ['class' => 'index0h\\log\\LogstashFileTarget'], ....
Example Logstash configuration (current version 1.3.3)
input {
file {
type => "yii_log"
path => [ "path/to/yii/logs/*.log*" ]
start_position => "end"
stat_interval => 1
discover_interval => 30
codec => "json"
}
}
filter {
# ...
}
output {
stdout => {}
}
LogstashTarget
Extends yii\log\Target, more options see here
Example Yii configuration
.... 'components' => [ 'log' => [ 'targets' => [ ['class' => 'index0h\\log\\LogstashTarget'], // Or UDP. [ 'class' => 'index0h\\log\\LogstashTarget', 'dsn' => 'udp://localhost:3333' ], // Or unix socket file. [ 'class' => 'index0h\\log\\LogstashTarget', 'dsn' => 'unix:///path/to/logstash.sock' ], ....
Example Logstash configuration (current version 1.3.3)
input {
tcp {
type => "yii_log"
port => 3333
codec => "json"
}
# Or UDP.
udp {
type => "yii_log"
port => 3333
codec => "json"
}
# Or unix socket file.
unix {
type => "yii_log"
path => "path/to/logstash.sock"
codec => "json"
}
}
filter {
# ...
}
output {
stdout => {}
}
Properties
dsn, defaulttcp://localhost:3333- URL to logstash service. Allowed schemas: tcp, udp, unix - for unix sock files.
RedisTarget
Extends yii\log\Target, more options see here
Example Yii configuration
.... 'components' => [ 'log' => [ 'targets' => [ ['class' => 'index0h\\log\\RedisTarget'], ....
Example Logstash configuration (current version 1.3.3)
input {
redis {
type => "yii_log"
key => "yii_log"
codec => "json"
}
}
filter {
# ...
}
output {
stdout => {}
}
Properties
key, defaultyii_log- Redis list key.componentName- Name of yii redis component.
Testing
Run tests from IDE (example for PhpStorm)
- Select Run/Debug Configuration -> Edit Configurations
- Select Add New Configuration -> PHP Script
- Type:
- File: /path/to/yii-phar/.test.php
- Arguments run: run --coverage --html
- OK
Run tests from console
make test
Thanks to
index0h/yii2-log 适用场景与选型建议
index0h/yii2-log 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 209.29k 次下载、GitHub Stars 达 48, 最近一次更新时间为 2014 年 02 月 28 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「log」 「redis」 「elasticsearch」 「yii2」 「logstash」 「log-target」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 index0h/yii2-log 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 index0h/yii2-log 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 index0h/yii2-log 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Microservice RPC through message queues.
The CodeIgniter Redis package
贝嘟分布式缓存扩展
simple api library.
Stackdriver handler for Monolog (codeinternetapplications/monolog-stackdriver Fork).
Laravel 5.x.x library for integration Monolog Sentry
统计信息
- 总下载量: 209.29k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 50
- 点击次数: 27
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-02-28