From ff9d38540f88cb525754c59790accfcc0748ee01 Mon Sep 17 00:00:00 2001 From: Edd Robinson Date: Thu, 21 Jul 2016 11:50:21 +0100 Subject: [PATCH] Update release notes and sample config --- CHANGELOG.md | 3 ++- etc/config.sample.toml | 5 ++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c8b207820..7abad2e1be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,8 @@ ### Release Notes * Config option `[cluster]` has been replaced with `[coordinator]` -* Support for config options `[collectd]` and `[opentsdb]` has been removed; use `[[collectd]]` and `[[opentsdb]]` instead +* Support for config options `[collectd]` and `[opentsdb]` has been removed; use `[[collectd]]` and `[[opentsdb]]` instead. +* Config option `data-logging-enabled` within the `[data]` section, has been renamed to `trace-logging-enabled`, and defaults to `false`. With this release the systemd configuration files for InfluxDB will use the system configured default for logging and will no longer write files to `/var/log/influxdb` by default. On most systems, the logs will be directed to the systemd journal and can be accessed by `journalctl -u influxdb.service`. Consult the systemd journald documentation for configuring journald. diff --git a/etc/config.sample.toml b/etc/config.sample.toml index bec85a5103..8bda42ae3d 100644 --- a/etc/config.sample.toml +++ b/etc/config.sample.toml @@ -49,7 +49,10 @@ reporting-disabled = false # These are the WAL settings for the storage engine >= 0.9.3 wal-dir = "/var/lib/influxdb/wal" wal-logging-enabled = true - data-logging-enabled = true + + # Trace logging provides more verbose output around the tsm engine. Turning + # this on can provide more useful output for debugging tsm engine issues. + # trace-logging-enabled = false # Whether queries should be logged before execution. Very useful for troubleshooting, but will # log any sensitive data contained within a query.