summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Head <chead@chead.ca>2020-06-11 16:52:08 +0300
committerJoonas Niilola <juippis@gentoo.org>2020-06-11 17:23:31 +0300
commit48003f4ea7305cf6bd2bb6e6de1cf40263b48c5c (patch)
treeecacdb3f8b0063761ac841803a7d73e2e6bf16d7 /dev-python/influxdb/files
parentgui-apps/wf-recorder: live ebuild added (diff)
downloadgentoo-48003f4ea7305cf6bd2bb6e6de1cf40263b48c5c.tar.gz
gentoo-48003f4ea7305cf6bd2bb6e6de1cf40263b48c5c.tar.bz2
gentoo-48003f4ea7305cf6bd2bb6e6de1cf40263b48c5c.zip
dev-python/influxdb: 5.3.0 bump, add Python 3.7
Signed-off-by: Christopher Head <chead@chead.ca> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-python/influxdb/files')
-rw-r--r--dev-python/influxdb/files/influxdb.conf.template29
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-python/influxdb/files/influxdb.conf.template b/dev-python/influxdb/files/influxdb.conf.template
new file mode 100644
index 000000000000..efcff78aa6ce
--- /dev/null
+++ b/dev-python/influxdb/files/influxdb.conf.template
@@ -0,0 +1,29 @@
+bind-address = ":{global_port}"
+
+[meta]
+ dir = "{meta_dir}"
+ hostname = "localhost"
+ bind-address = ":{meta_port}"
+
+[data]
+ dir = "{data_dir}"
+ wal-dir = "{wal_dir}"
+ index-version = "tsi1"
+
+[http]
+ enabled = true
+ bind-address = ":{http_port}"
+ auth-enabled = false
+
+[[udp]]
+ enabled = {udp_enabled}
+ bind-address = ":{udp_port}"
+ database = "db"
+ batch-size = 0
+ batch-timeout = "0"
+
+[monitor]
+ store-enabled = false
+
+[hinted-handoff]
+ dir = "{handoff_dir}"