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