parent
36c1a39a09
commit
d2afe424f5
|
@ -7,7 +7,10 @@ This plugin writes to [InfluxDB](https://www.influxdb.com) via HTTP or UDP.
|
||||||
```toml
|
```toml
|
||||||
# Configuration for influxdb server to send metrics to
|
# Configuration for influxdb server to send metrics to
|
||||||
[[outputs.influxdb]]
|
[[outputs.influxdb]]
|
||||||
## The full HTTP or UDP endpoint URL for your InfluxDB instance.
|
## The HTTP or UDP URL for your InfluxDB instance. Each item should be
|
||||||
|
## of the form:
|
||||||
|
## scheme "://" host [ ":" port]
|
||||||
|
##
|
||||||
## Multiple urls can be specified as part of the same cluster,
|
## Multiple urls can be specified as part of the same cluster,
|
||||||
## this means that only ONE of the urls will be written to each interval.
|
## this means that only ONE of the urls will be written to each interval.
|
||||||
# urls = ["udp://localhost:8089"] # UDP endpoint example
|
# urls = ["udp://localhost:8089"] # UDP endpoint example
|
||||||
|
|
|
@ -44,7 +44,10 @@ type InfluxDB struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
var sampleConfig = `
|
var sampleConfig = `
|
||||||
## The full HTTP or UDP endpoint URL for your InfluxDB instance.
|
## The HTTP or UDP URL for your InfluxDB instance. Each item should be
|
||||||
|
## of the form:
|
||||||
|
## scheme "://" host [ ":" port]
|
||||||
|
##
|
||||||
## Multiple urls can be specified as part of the same cluster,
|
## Multiple urls can be specified as part of the same cluster,
|
||||||
## this means that only ONE of the urls will be written to each interval.
|
## this means that only ONE of the urls will be written to each interval.
|
||||||
# urls = ["udp://localhost:8089"] # UDP endpoint example
|
# urls = ["udp://localhost:8089"] # UDP endpoint example
|
||||||
|
|
Loading…
Reference in New Issue