diff options
Diffstat (limited to 'data/influxdb')
-rw-r--r-- | data/influxdb/influxdb.conf | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/data/influxdb/influxdb.conf b/data/influxdb/influxdb.conf new file mode 100644 index 0000000..c5822ff --- /dev/null +++ b/data/influxdb/influxdb.conf | |||
@@ -0,0 +1,30 @@ | |||
1 | reporting-enabled = false | ||
2 | [meta] | ||
3 | dir = "/var/lib/influxdb/meta" | ||
4 | [data] | ||
5 | dir = "/var/lib/influxdb/data" | ||
6 | wal-dir = "/var/lib/influxdb/wal" | ||
7 | [coordinator] | ||
8 | [retention] | ||
9 | [shard-precreation] | ||
10 | [monitor] | ||
11 | [http] | ||
12 | enabled = true | ||
13 | bind-address = ":8086" | ||
14 | auth-enabled = true | ||
15 | [ifql] | ||
16 | [logging] | ||
17 | [subscriber] | ||
18 | [[graphite]] | ||
19 | [[collectd]] | ||
20 | [[opentsdb]] | ||
21 | [[udp]] | ||
22 | enabled = true | ||
23 | bind-address = "0.0.0.0:8089" | ||
24 | database = "proxmox" | ||
25 | batch-size = 1000 | ||
26 | batch-timeout = "1s" | ||
27 | [continuous_queries] | ||
28 | [tls] | ||
29 | min-version = "tls1.2" | ||
30 | |||