-
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
metricbeat: collect total thread count per process #36578
metricbeat: collect total thread count per process #36578
Conversation
go.mod
Outdated
@@ -406,3 +406,5 @@ replace ( | |||
|
|||
// Exclude this version because the version has an invalid checksum. | |||
exclude github.com/docker/distribution v2.8.0+incompatible | |||
|
|||
replace github.com/elastic/elastic-agent-system-metrics => github.com/AndersonQ/elastic-agent-system-metrics v0.0.0-20230913114254-ef72b6fa59d9 |
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.
As soon as elastic/elastic-agent-system-metrics#96 gets merged and elastic-agent-system-metrics
v0.5.0
released, I'll remove the replace and properly upgrade elastic-agent-system-metrics
to v0.5.0
.
95dfb9c
to
07bfb27
Compare
07bfb27
to
14404e7
Compare
libbeat/tests/system/beat/beat.py
Outdated
# print("===================================================================================================") | ||
# print("doc_list:", doc_list) | ||
# print("===================================================================================================") |
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.
Debug comments?
# print("===================================================================================================") | |
# print("doc_list:", doc_list) | |
# print("===================================================================================================") |
libbeat/tests/system/beat/beat.py
Outdated
|
||
print( "=================================================================================================") | ||
print("path:", path) | ||
print( "=================================================================================================") |
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.
Debug comments?
print( "=================================================================================================") | |
print("path:", path) | |
print( "=================================================================================================") |
44aea18
to
18e0a67
Compare
98b2b4d
to
fa6ad19
Compare
/test |
Upgrades elastic-agent-system-metrics to v0.7.0 in order to collect the number of threads per process.
fa6ad19
to
8ec8800
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.
Already approved by @fearful-symmetry
* metricbeat: collect number of threads per process Upgrades elastic-agent-system-metrics to v0.7.0 in order to collect the number of threads per process.
Collect the total by thread count per process upgrading elastic-agent-system-metrics to v0.7.0
Proposed commit message
metricbeat: collect total thread count per process
Upgrades elastic-agent-system-metrics to v0.5.0 in order to collect the total thread count per process.
Checklist
[ ] I have commented my code, particularly in hard-to-understand areas[ ] I have made corresponding changes to the documentation[ ] I have made corresponding change to the default configuration files[ ] I have added tests that prove my fix is effective or that my feature worksCHANGELOG.next.asciidoc
orCHANGELOG-developer.next.asciidoc
.Related issues
process.GetInfoForPid
collects the total thread count elastic-agent-system-metrics#100Logs