Update changelog/csv parser docs

This commit is contained in:
Daniel Nelson 2019-02-05 17:45:44 -08:00
parent 10ac030502
commit f54da4d748
No known key found for this signature in database
GPG Key ID: CAAD59C9444F6155
2 changed files with 4 additions and 3 deletions

View File

@ -39,6 +39,7 @@
- [#5294](https://github.com/influxdata/telegraf/pull/5294): Support passing bearer token directly in prometheus input.
- [#5292](https://github.com/influxdata/telegraf/pull/5292): Add option to report input timestamp in prometheus output.
- [#5234](https://github.com/influxdata/telegraf/pull/5234): Add Linux mipsle packages.
- [#5382](https://github.com/influxdata/telegraf/pull/5382): Support unix_us and unix_ns timestamp format in csv parser.
#### Bugfixes

View File

@ -74,9 +74,9 @@ time using the JSON document you can use the `csv_timestamp_column` and
document.
The `csv_timestamp_column` option specifies the key containing the time value and
`csv_timestamp_format` must be set to `unix`, `unix_ms`, or a format string in
using the Go "reference time" which is defined to be the **specific time**:
`Mon Jan 2 15:04:05 MST 2006`.
`csv_timestamp_format` must be set to `unix`, `unix_ms`, `unix_us`, `unix_ns`,
or a format string in using the Go "reference time" which is defined to be the
**specific time**: `Mon Jan 2 15:04:05 MST 2006`.
Consult the Go [time][time parse] package for details and additional examples
on how to set the time format.