alexlen / laravel-db-profiler
数据库分析器
1.6
2024-02-12 13:08 UTC
Requires
- php: ^8.1
This package is auto-updated.
Last update: 2024-09-12 14:22:56 UTC
README
该包允许将超过配置中设定时间的查询记录到文件或表中
安装
composer require alexlen/laravel-db-profiler
发布配置文件(alexlen/profiler.php
)和表迁移
php artisan vendor:publish --tag=db-profiler
如果计划使用数据库日志,则需要执行迁移
php artisan migrate
使用
存在两种日志记录模式
- 记录到文件(文件名在配置中指定);
- 记录到
sql_profilers
表
在记录到表的模式下,不会在执行 artisan-命令时记录日志
配置文件的设置已在配置文件中进行了文档化