-
Notifications
You must be signed in to change notification settings - Fork 444
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
[AWS] Fix field names for rds remove processor #7331
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.
@kaiyan-sheng Why do we need to remove the same field we're renaming? In which case the rename is not enough?
🌐 Coverage report
|
We rename it and then remove the original field name. So we don't report the same data point twice :) |
Yeah, I get it. What I meant was, for example, why do we need to remove the field
|
@zmoog Ahh sorry I completely misunderstood you! Thanks for the comment!! This is interesting! I didnt know rename processor also removes the old field! Let me double check tomorrow then :) |
@zmoog you are right! The renamed processors deleted the old fields after done renaming. So I will change this PR to actually remove the remove processor then 😂 THANK YOU!! |
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.
So we are dropping the remove processor because it's not doing any actual work since the rename processor already changes the fields name.
LGTM.
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
Package aws - 1.53.2 containing this change is available at https://epr.elastic.co/search?package=aws |
What does this PR do?
This pr is to drop the remove processor because it's not doing any actual work since the rename processor already changes the fields name.