mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
chore: Update config.sample.php to include query log extensions
Signed-off-by: Marcel Müller <marcel-mueller@gmx.de>
This commit is contained in:
parent
0955b0a39d
commit
2ca168f717
1 changed files with 22 additions and 0 deletions
|
|
@ -2512,6 +2512,28 @@ $CONFIG = [
|
|||
*/
|
||||
'query_log_file' => '',
|
||||
|
||||
/**
|
||||
* Prefix all queries with the requestid when set to `yes`
|
||||
*
|
||||
* Requires `query_log_file` to be set.
|
||||
*/
|
||||
'query_log_file_requestid' => '',
|
||||
|
||||
/**
|
||||
* Add all query parameters to the query log entry when set to `yes`
|
||||
*
|
||||
* Requires `query_log_file` to be set.
|
||||
* Warning: This will log sensitive data into a plain text file.
|
||||
*/
|
||||
'query_log_file_parameters' => '',
|
||||
|
||||
/**
|
||||
* Add a backtrace to the query log entry when set to `yes`
|
||||
*
|
||||
* Requires `query_log_file` to be set.
|
||||
*/
|
||||
'query_log_file_backtrace' => '',
|
||||
|
||||
/**
|
||||
* Log all redis requests into a file
|
||||
*
|
||||
|
|
|
|||
Loading…
Reference in a new issue