Update changelog
This commit is contained in:
parent
fa30f568ec
commit
027016aea2
|
@ -64,6 +64,13 @@
|
||||||
- [#4537](https://github.com/influxdata/telegraf/pull/4537): Add message 'max_bytes' configuration to kafka input.
|
- [#4537](https://github.com/influxdata/telegraf/pull/4537): Add message 'max_bytes' configuration to kafka input.
|
||||||
- [#4546](https://github.com/influxdata/telegraf/pull/4546): Add gopsutil meminfo fields to mem plugin.
|
- [#4546](https://github.com/influxdata/telegraf/pull/4546): Add gopsutil meminfo fields to mem plugin.
|
||||||
|
|
||||||
|
## v1.7.4 [unreleased]
|
||||||
|
|
||||||
|
### Bugfixes
|
||||||
|
|
||||||
|
- [#4534](https://github.com/influxdata/telegraf/pull/4534): Skip unserializable metric in influxDB UDP output.
|
||||||
|
- [#4554](https://github.com/influxdata/telegraf/pull/4554): Fix powerdns input tests.
|
||||||
|
|
||||||
## v1.7.3 [2018-08-07]
|
## v1.7.3 [2018-08-07]
|
||||||
|
|
||||||
### Bugfixes
|
### Bugfixes
|
||||||
|
|
|
@ -10,7 +10,7 @@ Telegraf is able to parse the following input data formats into metrics:
|
||||||
1. [Collectd](#collectd)
|
1. [Collectd](#collectd)
|
||||||
1. [Dropwizard](#dropwizard)
|
1. [Dropwizard](#dropwizard)
|
||||||
1. [Grok](#grok)
|
1. [Grok](#grok)
|
||||||
1. [Wavefront](https://github.com/influxdata/telegraf/blob/master/docs/DATA_FORMATS_INPUT.md#wavefront)
|
1. [Wavefront](#wavefront)
|
||||||
|
|
||||||
Telegraf metrics, like InfluxDB
|
Telegraf metrics, like InfluxDB
|
||||||
[points](https://docs.influxdata.com/influxdb/v0.10/write_protocols/line/),
|
[points](https://docs.influxdata.com/influxdb/v0.10/write_protocols/line/),
|
||||||
|
@ -661,7 +661,7 @@ For more information about the dropwizard json format see
|
||||||
# tag2 = "tags.tag2"
|
# tag2 = "tags.tag2"
|
||||||
```
|
```
|
||||||
|
|
||||||
# Grok
|
# Grok:
|
||||||
|
|
||||||
The grok data format parses line delimited data using a regular expression like
|
The grok data format parses line delimited data using a regular expression like
|
||||||
language.
|
language.
|
||||||
|
@ -881,9 +881,6 @@ the file output will only print once per `flush_interval`.
|
||||||
- If successful, add the next token, update the pattern and retest.
|
- If successful, add the next token, update the pattern and retest.
|
||||||
- Continue one token at a time until the entire line is successfully parsed.
|
- Continue one token at a time until the entire line is successfully parsed.
|
||||||
|
|
||||||
|
|
||||||
```
|
|
||||||
|
|
||||||
# Wavefront:
|
# Wavefront:
|
||||||
|
|
||||||
Wavefront Data Format is metrics are parsed directly into Telegraf metrics.
|
Wavefront Data Format is metrics are parsed directly into Telegraf metrics.
|
||||||
|
|
|
@ -1980,7 +1980,7 @@
|
||||||
# timeout = "20s"
|
# timeout = "20s"
|
||||||
|
|
||||||
# ## Schema Version: (Optional, defaults to version 1)
|
# ## Schema Version: (Optional, defaults to version 1)
|
||||||
# schemaVersion = 2
|
# metric_version = 2
|
||||||
|
|
||||||
|
|
||||||
# # Gather packets and bytes counters from Linux ipsets
|
# # Gather packets and bytes counters from Linux ipsets
|
||||||
|
|
Loading…
Reference in New Issue