vynhart / laravel-slow-query-log
Installs: 1 376
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: >=7.1
- illuminate/support: >=5.4.0
README
Usage
Publish config
The first time you use this package, publish the configuration by typing php artisan vendor:publish --provider=Vynhart\SlowQueryLog\ServiceProvider
Enable it by settings environment variable SLOW_QUERY_LOG_ENABLED
to true
.
Set your minimum threshold of query execution to be considered slow by setting environment variable SLOW_QUERY_MIN_THRESHOLD
to a number (in millisecond unit).
If you only want to trace certain files, set your environment variable SLOW_QUERY_TRACE_ONLY
to some string.
For example if you want to only keep the trace data of all files within app/
folder, set SLOW_QUERY_TRACE_ONLY
to app/