@@ -11,6 +11,7 @@ This InfluxDB output plugin writes metrics to the [InfluxDB](https://github.com/
1111 # #
1212 # # Multiple URLs can be specified for a single cluster, only ONE of the
1313 # # urls will be written to each interval.
14+ # urls = ["unix:///var/run/influxdb.sock"]
1415 # urls = ["udp://127.0.0.1:8089"]
1516 # urls = ["http://127.0.0.1:8086"]
1617
@@ -23,10 +24,11 @@ This InfluxDB output plugin writes metrics to the [InfluxDB](https://github.com/
2324 # skip_database_creation = false
2425
2526 # # Name of existing retention policy to write to. Empty string writes to
26- # # the default retention policy.
27+ # # the default retention policy. Only takes effect when using HTTP.
2728 # retention_policy = ""
2829
29- # # Write consistency (clusters only), can be: "any", "one", "quorum", "all"
30+ # # Write consistency (clusters only), can be: "any", "one", "quorum", "all".
31+ # # Only takes effect when using HTTP.
3032 # write_consistency = "any"
3133
3234 # # Timeout for HTTP messages.
@@ -42,7 +44,7 @@ This InfluxDB output plugin writes metrics to the [InfluxDB](https://github.com/
4244 # # UDP payload size is the maximum packet size to send.
4345 # udp_payload = 512
4446
45- # # Optional SSL Config
47+ # # Optional SSL Config for use on HTTP connections.
4648 # ssl_ca = "/etc/telegraf/ca.pem"
4749 # ssl_cert = "/etc/telegraf/cert.pem"
4850 # ssl_key = "/etc/telegraf/key.pem"
0 commit comments