1# Output Configuration for telegraf agent
2[[outputs.influxdb_v2]]
3 ## Point to your influxdb container
4 urls = ["http://influxdb:8086"]
5 ## Token for authentication; created with the influxdb_cli service.
6 token = "mytoken"
7 ## Organization is the name of the organization you wish to write to; created with the influxdb_cli service.
8 organization = "myorg"
9 ## Destination bucket to write into; created with the influxdb_cli service.
10 bucket = "mybucket"Copy