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
Add a timezone configuration parameter to the CSV data format.
Currently, any timestamp without timezone within the csv value will treated as UTC.
telegraf/plugins/parsers/csv/parser.go
Line 245 in 1e7f714
There is a way to set the timezone. Otherwise, it will be treated as UTC.
There is a possibility that the csv file that we want to parse, containing timestamp column without any timezone information attached to it.
The expected format should be
Instead, we get
In this case there is no possibility to ask the source to add the timezone information.
The text was updated successfully, but these errors were encountered:
PR #7619
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Feature Request
Proposal:
Add a timezone configuration parameter to the CSV data format.
Current behavior:
Currently, any timestamp without timezone within the csv value will treated as UTC.
telegraf/plugins/parsers/csv/parser.go
Line 245 in 1e7f714
Desired behavior:
There is a way to set the timezone. Otherwise, it will be treated as UTC.
Use case:
There is a possibility that the csv file that we want to parse, containing timestamp column without any timezone information attached to it.
The expected format should be
Instead, we get
In this case there is no possibility to ask the source to add the timezone information.
The text was updated successfully, but these errors were encountered: