Configuration de l'agent télégaf

# 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 = "mytoken"
  ## Organization is the name of the organization you wish to write to; created with the influxdb_cli service.
  organization = "myorg"
  ## Destination bucket to write into; created with the influxdb_cli service.
  bucket = "mybucket"Copy
Thoughtful Tern