Update changelog/csv parser docs
This commit is contained in:
parent
10ac030502
commit
f54da4d748
|
@ -39,6 +39,7 @@
|
||||||
- [#5294](https://github.com/influxdata/telegraf/pull/5294): Support passing bearer token directly in prometheus input.
|
- [#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.
|
- [#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.
|
- [#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
|
#### Bugfixes
|
||||||
|
|
||||||
|
|
|
@ -74,9 +74,9 @@ time using the JSON document you can use the `csv_timestamp_column` and
|
||||||
document.
|
document.
|
||||||
|
|
||||||
The `csv_timestamp_column` option specifies the key containing the time value and
|
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
|
`csv_timestamp_format` must be set to `unix`, `unix_ms`, `unix_us`, `unix_ns`,
|
||||||
using the Go "reference time" which is defined to be the **specific time**:
|
or a format string in using the Go "reference time" which is defined to be the
|
||||||
`Mon Jan 2 15:04:05 MST 2006`.
|
**specific time**: `Mon Jan 2 15:04:05 MST 2006`.
|
||||||
|
|
||||||
Consult the Go [time][time parse] package for details and additional examples
|
Consult the Go [time][time parse] package for details and additional examples
|
||||||
on how to set the time format.
|
on how to set the time format.
|
||||||
|
|
Loading…
Reference in New Issue