parent
52d5b19219
commit
204ebf6bf6
|
@ -18,6 +18,7 @@ to "stdout".
|
||||||
- [#1233](https://github.com/influxdata/telegraf/pull/1233): Updated golint gopsutil dependency.
|
- [#1233](https://github.com/influxdata/telegraf/pull/1233): Updated golint gopsutil dependency.
|
||||||
- [#1238](https://github.com/influxdata/telegraf/pull/1238): chrony input plugin. Thanks @zbindenren!
|
- [#1238](https://github.com/influxdata/telegraf/pull/1238): chrony input plugin. Thanks @zbindenren!
|
||||||
- [#479](https://github.com/influxdata/telegraf/issues/479): per-plugin execution time added to debug output.
|
- [#479](https://github.com/influxdata/telegraf/issues/479): per-plugin execution time added to debug output.
|
||||||
|
- [#1249](https://github.com/influxdata/telegraf/issues/1249): influxdb output: added write_consistency argument.
|
||||||
|
|
||||||
### Bugfixes
|
### Bugfixes
|
||||||
|
|
||||||
|
|
|
@ -75,12 +75,15 @@
|
||||||
urls = ["http://localhost:8086"] # required
|
urls = ["http://localhost:8086"] # required
|
||||||
## The target database for metrics (telegraf will create it if not exists).
|
## The target database for metrics (telegraf will create it if not exists).
|
||||||
database = "telegraf" # required
|
database = "telegraf" # required
|
||||||
## Retention policy to write to.
|
|
||||||
retention_policy = "default"
|
|
||||||
## Precision of writes, valid values are "ns", "us" (or "µs"), "ms", "s", "m", "h".
|
## Precision of writes, valid values are "ns", "us" (or "µs"), "ms", "s", "m", "h".
|
||||||
## note: using "s" precision greatly improves InfluxDB compression.
|
## note: using "s" precision greatly improves InfluxDB compression.
|
||||||
precision = "s"
|
precision = "s"
|
||||||
|
|
||||||
|
## Retention policy to write to.
|
||||||
|
retention_policy = "default"
|
||||||
|
## Write consistency (clusters only), can be: "any", "one", "quorom", "all"
|
||||||
|
write_consistency = "any"
|
||||||
|
|
||||||
## Write timeout (for the InfluxDB client), formatted as a string.
|
## Write timeout (for the InfluxDB client), formatted as a string.
|
||||||
## If not provided, will default to 5s. 0s means no timeout (not recommended).
|
## If not provided, will default to 5s. 0s means no timeout (not recommended).
|
||||||
timeout = "5s"
|
timeout = "5s"
|
||||||
|
|
|
@ -26,6 +26,7 @@ type InfluxDB struct {
|
||||||
UserAgent string
|
UserAgent string
|
||||||
Precision string
|
Precision string
|
||||||
RetentionPolicy string
|
RetentionPolicy string
|
||||||
|
WriteConsistency string
|
||||||
Timeout internal.Duration
|
Timeout internal.Duration
|
||||||
UDPPayload int `toml:"udp_payload"`
|
UDPPayload int `toml:"udp_payload"`
|
||||||
|
|
||||||
|
@ -49,12 +50,15 @@ var sampleConfig = `
|
||||||
urls = ["http://localhost:8086"] # required
|
urls = ["http://localhost:8086"] # required
|
||||||
## The target database for metrics (telegraf will create it if not exists).
|
## The target database for metrics (telegraf will create it if not exists).
|
||||||
database = "telegraf" # required
|
database = "telegraf" # required
|
||||||
## Retention policy to write to.
|
|
||||||
retention_policy = "default"
|
|
||||||
## Precision of writes, valid values are "ns", "us" (or "µs"), "ms", "s", "m", "h".
|
## Precision of writes, valid values are "ns", "us" (or "µs"), "ms", "s", "m", "h".
|
||||||
## note: using "s" precision greatly improves InfluxDB compression.
|
## note: using "s" precision greatly improves InfluxDB compression.
|
||||||
precision = "s"
|
precision = "s"
|
||||||
|
|
||||||
|
## Retention policy to write to.
|
||||||
|
retention_policy = "default"
|
||||||
|
## Write consistency (clusters only), can be: "any", "one", "quorom", "all"
|
||||||
|
write_consistency = "any"
|
||||||
|
|
||||||
## Write timeout (for the InfluxDB client), formatted as a string.
|
## Write timeout (for the InfluxDB client), formatted as a string.
|
||||||
## If not provided, will default to 5s. 0s means no timeout (not recommended).
|
## If not provided, will default to 5s. 0s means no timeout (not recommended).
|
||||||
timeout = "5s"
|
timeout = "5s"
|
||||||
|
@ -182,6 +186,7 @@ func (i *InfluxDB) Write(metrics []telegraf.Metric) error {
|
||||||
Database: i.Database,
|
Database: i.Database,
|
||||||
Precision: i.Precision,
|
Precision: i.Precision,
|
||||||
RetentionPolicy: i.RetentionPolicy,
|
RetentionPolicy: i.RetentionPolicy,
|
||||||
|
WriteConsistency: i.WriteConsistency,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
|
|
Loading…
Reference in New Issue