-
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
[fix][metricbeat]Fix metricbeat/perfmon measurement grouping #23505
Conversation
Pinging @elastic/security-external-integrations (Team:Security-External Integrations) |
5e7a5cc
to
b5f5c6a
Compare
💚 Build Succeeded
Expand to view the summary
Build stats
Test stats 🧪
💚 Flaky test reportTests succeeded. Expand to view the summary
Test stats 🧪
|
Pinging @elastic/integrations (Team:Integrations) |
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, thanks !
b5f5c6a
to
2e51164
Compare
(cherry picked from commit b04a4b1)
(cherry picked from commit b04a4b1)
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