Added influxdb as a metrics reporter/backend

This commit is contained in:
Geoff Bourne
2020-01-04 14:22:01 -06:00
parent 7f50c512f5
commit a12bbb88a3
7 changed files with 171 additions and 28 deletions
@@ -0,0 +1,9 @@
version: '3'
services:
telegraf:
image: telegraf:1.13
ports:
- 8186:8186
volumes:
- ./telegraf.conf:/etc/telegraf/telegraf.conf:ro
@@ -0,0 +1,8 @@
[agent]
interval = "10s"
[[inputs.influxdb_listener]]
service_address = ":8186"
[[outputs.file]]
files = ["stdout"]