diff options
Diffstat (limited to 'roles/influxdb/templates/influxdb.conf.j2')
-rw-r--r-- | roles/influxdb/templates/influxdb.conf.j2 | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/roles/influxdb/templates/influxdb.conf.j2 b/roles/influxdb/templates/influxdb.conf.j2 new file mode 100644 index 0000000..6d290bf --- /dev/null +++ b/roles/influxdb/templates/influxdb.conf.j2 @@ -0,0 +1,42 @@ +# Managed by Ansible. Do not change. + +[meta] + dir = "/var/lib/influxdb/meta" + +[data] + dir = "/var/lib/influxdb/data" + wal-dir = "/var/lib/influxdb/wal" + series-id-set-cache-size = 100 + +[coordinator] + +[retention] + +[shard-precreation] + +[monitor] + +[http] + enabled = true + bind-address = ":8086" + + https-enabled = {{ influx.https_enabled | lower }} + + https-certificate = "{{ influx.https_cert }}" + https-private-key = "{{ influx.https_key }}" + +[logging] + +[subscriber] + +[[graphite]] + +[[collectd]] + +[[opentsdb]] + +[[udp]] + +[continuous_queries] + +[tls] |