-
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
Cherry-pick #23505 to 7.11: [fix][metricbeat]Fix metricbeat/perfmon measurement grouping #23611
Conversation
Pinging @elastic/security-external-integrations (Team:Security-External Integrations) |
Pinging @elastic/integrations (Team:Integrations) |
💚 Build Succeeded
Expand to view the summary
Build stats
Test stats 🧪
💚 Flaky test reportTests succeeded. Expand to view the summary
Test stats 🧪
|
62ce0da
to
7a176aa
Compare
I just added some windows labels to validate this particular change for all the supported versions of Windows. /test |
(cherry picked from commit b04a4b1)
7a176aa
to
fa98608
Compare
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
Cherry-pick of PR #23505 and #23617 to 7.11 branch. Original message:
What does this PR do?
Fixes measurement grouping on metricbeat windows/perfmon.
Why is it important?
Counter from different metric objects were being mixed when measurement grouping was enabled.
Checklist
- [ ] I have made corresponding changes to the documentation- [ ] I have made corresponding change to the default configuration filesCHANGELOG.next.asciidoc
orCHANGELOG-developer.next.asciidoc
.Logs
With a config like:
We were getting an output like:
Note
%_processor_time
being merged withPhysicalDisk
object metrics.After the fix we get the following output instead:
Now we get a different event for each object.
Fixes #23489