-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
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
[receiver/awss3receiver] Add support RFC3339 format for starttime and endtime #36787
Conversation
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, neat changes.
Thanks for quick review! I've added a file under .chloggen. Changes are here 🙇 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great change, RFC3339 is the way to go for these time inputs 👍
… endtime (open-telemetry#36787) #### Description This PR adds support RFC3339 (`"2006-01-02T15:04:05Z07:00"`) format for `starttime` and `endtime` fields. Currently, those fields cannot specify timezone. It's depends on the situation. This change makes clear the timezone. #### Testing This PR adds a new test data `awss3/4` which tests specifying RFC3339.
… endtime (open-telemetry#36787) #### Description This PR adds support RFC3339 (`"2006-01-02T15:04:05Z07:00"`) format for `starttime` and `endtime` fields. Currently, those fields cannot specify timezone. It's depends on the situation. This change makes clear the timezone. #### Testing This PR adds a new test data `awss3/4` which tests specifying RFC3339.
Description
This PR adds support RFC3339 (
"2006-01-02T15:04:05Z07:00"
) format forstarttime
andendtime
fields.Currently, those fields cannot specify timezone. It's depends on the situation.
This change makes clear the timezone.
Testing
This PR adds a new test data
awss3/4
which tests specifying RFC3339.Documentation
This PR changes README.md to describe time format.