使用mongodb统一存储debug数据的扩展 [ 2.0 版本 ]
- 把多个节点的debug信息聚合保存到统一的MongoDB中方便分析问题。
- 使用MongoDB可以存储更多的数据。
https://packagist.org/packages/yagas/yii2-debug4mongo
安装扩展:
composer require yagas/yii2-debug4mongo
配置扩展:
if (YII_ENV_DEV) {
$config['bootstrap'][] = 'debug';
$config['modules']['debug'] = [
'class' => 'yagas\debug\Module',
'logTarget' => [
'class' => 'yagas\debug\LogTarget',
'app_no' => 'localhost_001', // 为当前节点设定标识
],
'percent' => 10, // 百分之十的几率清除历史数据(GC)
];
}
yagas 深圳
注册时间:2012-05-08
最后登录:2024-09-12
在线时长:3小时18分
最后登录:2024-09-12
在线时长:3小时18分
- 粉丝1
- 金钱55
- 威望10
- 积分185
共 0 条评论