Merge pull request #5856 from influxdata/db/459/query-logging-docs

feat: Update config-data-nodes for query logging
jts/fix-mono-get-started
Jason Stirnaman 2025-02-24 13:04:18 -06:00 committed by GitHub
commit 8da7e7efb8
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
An absolute path to the query log file.
The default is `""` (queries aren't logged to a file).
Query logging supports 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"`.