Update variables, add new ones

This commit is contained in:
Alex 2020-05-21 20:17:28 +02:00
parent 7e7df77d73
commit cdcef9dc39
Signed by: caskd
GPG Key ID: F92BA85F61F4C173
1 changed files with 4 additions and 4 deletions

View File

@ -20,7 +20,7 @@ reporting-disabled = false
[meta]
# Where the metadata/raft database is stored
dir = "/var/lib/influxdb/meta"
dir = "{{ influxdb.storage }}/meta"
retention-autocreate = true
@ -44,9 +44,9 @@ reporting-disabled = false
# Controls if this node holds time series data shards in the cluster
enabled = true
dir = "/var/lib/influxdb/data"
dir = "{{ influxdb.storage }}/data"
# These are the WAL settings for the storage engine >= 0.9.3
wal-dir = "/var/lib/influxdb/wal"
wal-dir = "{{ influxdb.storage }}/wal"
index-version = "tsi1"
# Trace logging provides more verbose output around the tsm engine. Turning
@ -162,7 +162,7 @@ reporting-disabled = false
[http]
enabled = true
bind-address = "{{ ansible_ens10.ipv4.address }}:{{ services.influxdb.port }}"
bind-address = "{{ ansible_ens10.ipv4.address }}:{{ influxdb.port }}"
auth-enabled = false
log-enabled = true
write-tracing = false