feat: Update config-data-nodes for query logging

This PR updates the data config documentation to include information about `query-log-path`.
pull/5856/head
WeblWabl 2025-02-24 09:23:18 -06:00 committed by GitHub
parent 471e9f240d
commit b527eb1f2d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 23 additions and 0 deletions

View File

@ -303,6 +303,29 @@ Very useful for troubleshooting, but will log any sensitive data contained withi
Environment variable: `INFLUXDB_DATA_QUERY_LOG_ENABLED`
#### query-log-path
Default is `""`.
Whether queries should be logged to a file at a given path.
If the value is set to `""` (default) queries are not logged to a file.
Please make sure you are using the absolute path when configuring this.
We support `SIGHUP` based log rotation. The following is an example of a `logrotate` configuration:
```
/var/log/influxdb/queries.log {
rotate 5
daily
compress
missingok
notifempty
create 644 root root
postrotate
/bin/kill -HUP `pgrep -x influxd`
endscript
}
```
#### wal-fsync-delay
Default is `"0s"`.