aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron Smith <aasmith@redhat.com>2018-01-12 19:22:54 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-01-12 19:22:54 +0000
commite15d33ea0d91a977980efd1e26ff1907ddfcedf0 (patch)
treef79b01bd92b138139cb69bdf4449a87ab54f04c0
parent6c502325f052d1fcd4fc4ef791b8ab4262d23a04 (diff)
parent06855cba5906d5fc032ed9910926ab727d0f46f8 (diff)
Merge "docker: influxdb add collectd database"
-rw-r--r--docker/barometer-influxdb/influxdb.conf13
1 files changed, 11 insertions, 2 deletions
diff --git a/docker/barometer-influxdb/influxdb.conf b/docker/barometer-influxdb/influxdb.conf
index 7fee866d..994208c3 100644
--- a/docker/barometer-influxdb/influxdb.conf
+++ b/docker/barometer-influxdb/influxdb.conf
@@ -21,8 +21,17 @@
[[graphite]]
[[collectd]]
-enabled = true
-typesdb = "/types.db"
+ enabled = true
+ bind-address = ":25826" # the bind address
+ database = "collectd" # Name of the database that will be written to
+ retention-policy = ""
+ batch-size = 5000 # will flush if this many points get buffered
+ batch-pending = 10 # number of batches that may be pending in memory
+ batch-timeout = "10s"
+ read-buffer = 0 # UDP read buffer size, 0 means to use OS default
+ typesdb = "/types.db"
+ security-level = "none" # "none", "sign", or "encrypt"
+
[[opentsdb]]
[[udp]]