-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
ES/Logstash log modules use wrong field to convert timezone #11055
Labels
Comments
ruflin
added
Filebeat
Filebeat
Team:Integrations
Label for the Integrations team
module
labels
Mar 4, 2019
We use |
Pinging @elastic/stack-monitoring |
I think this is the same as #9797 |
ycombinator
added a commit
that referenced
this issue
Mar 11, 2019
In 6.x the `add_locale` processor will [set the `beat.timezone` field](https://github.com/elastic/beats/blob/6.7/libbeat/processors/add_locale/add_locale.go#L89) (as opposed to `event.timezone`, which is [set starting 7.0](https://github.com/elastic/beats/blob/master/libbeat/processors/add_locale/add_locale.go#L89)). So any 6.x ingest pipelines looking for the timezone field should look for `beat.timezone`, not `event.timezone`. Fixes #11055.
ycombinator
added a commit
that referenced
this issue
Mar 13, 2019
#11195) Cherry-pick of PR #11164 to 6.6 branch. Original message: In 6.x the `add_locale` processor will [set the `beat.timezone` field](https://github.com/elastic/beats/blob/6.7/libbeat/processors/add_locale/add_locale.go#L89) (as opposed to `event.timezone`, which is [set starting 7.0](https://github.com/elastic/beats/blob/master/libbeat/processors/add_locale/add_locale.go#L89)). So any 6.x ingest pipelines looking for the timezone field should look for `beat.timezone`, not `event.timezone`. Fixes #11055.
Resolved via #11164. |
leweafan
pushed a commit
to leweafan/beats
that referenced
this issue
Apr 28, 2023
…timezone (elastic#11195) Cherry-pick of PR elastic#11164 to 6.6 branch. Original message: In 6.x the `add_locale` processor will [set the `beat.timezone` field](https://github.com/elastic/beats/blob/6.7/libbeat/processors/add_locale/add_locale.go#L89) (as opposed to `event.timezone`, which is [set starting 7.0](https://github.com/elastic/beats/blob/master/libbeat/processors/add_locale/add_locale.go#L89)). So any 6.x ingest pipelines looking for the timezone field should look for `beat.timezone`, not `event.timezone`. Fixes elastic#11055.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I see ES/Logstash pipeline use
event.timezone
to convert timezone, but acutlly onlybeat.timezone
added to ES, so default pipleline can not execute date processor.see the pipeline code
The text was updated successfully, but these errors were encountered: