1
0
Fork 0
This repository has been archived on 2024-12-18. You can view files and clone it, but cannot push or open issues or pull requests.
mining-dashboards/docker/telegraf.conf
Julien Riou 075a281a08
Use TLS for InfluxDB
Signed-off-by: Julien Riou <julien@riou.xyz>
2021-02-02 15:18:49 +01:00

22 lines
522 B
Text

[global_tags]
[agent]
interval = "60s"
round_interval = true
metric_batch_size = 1000
metric_buffer_limit = 10000
collection_jitter = "0s"
flush_interval = "60s"
flush_jitter = "0s"
precision = ""
hostname = "docker"
omit_hostname = false
[[outputs.influxdb]]
urls = ["https://influxdb:8086"]
username = "${INFLUXDB_WRITE_USER}"
password = "${INFLUXDB_WRITE_USER_PASSWORD}"
database = "${INFLUXDB_DB}"
skip_database_creation = true
insecure_skip_verify = true
content_encoding = "gzip"