Docker/telegraf/telegraf.conf

17 lines
664 B
Plaintext

# Output Configuration for telegraf agent
[[outputs.influxdb_v2]]
## Point to your influxdb container
urls = ["http://influxdb:8086"]
## Token for authentication; created with the influxdb_cli service.
token = "7km_XYOmaTnOrCSt2MReAyGT-nWmG5lSfyiS8e9rn3jjLaDTEaJzsP7KdnHI9sReAGgmKSAKK98EWUrEAZ0EyA=="
## Organization is the name of the organization you wish to write to; created with the influxdb_cli service.
organization = "milvert"
## Destination bucket to write into; created with the influxdb_cli service.
bucket = "MilvertBucket"
[[inputs.docker]]
endpoint = "unix:///var/run/docker.sock"
container_names = []
name_suffix = "_docker"