We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
PR #35896 introduced a bug in metricbeat perfmon module.
At
beats/metricbeat/module/windows/perfmon/data.go
Line 72 in 0361e30
The previous use of errors.Wrap, would have kept this as a nil error if val.Err.Error was nil, the current code makes a non nil Error.
This leads to things like the following in events:
"error.message": [ "failed on query=\\\\SERVER01\\Processor(5)\\% DPC Time: %!w(<nil>)" ],
The text was updated successfully, but these errors were encountered:
Pinging @elastic/elastic-agent-data-plane (Team:Elastic-Agent-Data-Plane)
Sorry, something went wrong.
fearful-symmetry
Successfully merging a pull request may close this issue.
PR #35896 introduced a bug in metricbeat perfmon module.
At
beats/metricbeat/module/windows/perfmon/data.go
Line 72 in 0361e30
The previous use of errors.Wrap, would have kept this as a nil error if val.Err.Error was nil, the current code makes a non nil Error.
This leads to things like the following in events:
The text was updated successfully, but these errors were encountered: