We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[input.file] csv_timestamp_format="02.01.2006 15:04:05" data_format="csv" csv_column_names = ["a","time","b", "c", "d"] (same behaviourwith or without next line) csv_column_types = ["string","string","string","string","string"] csv_delimiter=";" csv_tag_columns=["c"] csv_measurement_column="a" csv_timestamp_column="time"
Telegraf V1.12.1 on Debian Buster
csv_timestamp_format="02-01-2006 15:04:05" file data ...;"09-07-2019 00:11:00";...
csv_timestamp_format="02.01.2006 15:04:05" file data ...;"09.07.2019 00:11:00";...
Both format strings(1) and (2) should work
Configuration 1 operates as expected Configuration 2 throws error [inputs.file] Error in plugin: strconv.ParseInt: parsing "07.2019 0": invalid syntax
Configuration (2) worked in a previous test. Version? (spring 2019)
The text was updated successfully, but these errors were encountered:
danielnelson
Successfully merging a pull request may close this issue.
Relevant telegraf.conf:
System info:
Telegraf V1.12.1
on Debian Buster
Steps to reproduce:
csv_timestamp_format="02-01-2006 15:04:05"
file data ...;"09-07-2019 00:11:00";...
csv_timestamp_format="02.01.2006 15:04:05"
file data ...;"09.07.2019 00:11:00";...
Expected behavior:
Both format strings(1) and (2) should work
Actual behavior:
Configuration 1 operates as expected
Configuration 2 throws error
[inputs.file] Error in plugin: strconv.ParseInt: parsing "07.2019 0": invalid syntax
Additional info:
Configuration (2) worked in a previous test. Version? (spring 2019)
The text was updated successfully, but these errors were encountered: