-
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
Improve collection of process memory metrics in Windows #8345
Comments
Here is a good explanation of the differences and why it's a good idea to collect the virtual bytes. |
We are looking to use metric beat and virtual bytes is a critical metric for our applications. When our system becomes unstable its always due to virtual bytes and not working set/private bytes. Is there any timeline to schedule this enhancement? |
@jsoriano , indeed the Regarding adding virtual bytes in the metricset: We are currently using |
Now that @fearful-symmetry has started to work on OS-specific system modules (#17267), it would make more sense to use specific windows metricsets to get these metrics. Maybe we could have a |
Hi! We're labeling this issue as |
Currently only
Private Bytes
andWorking Set Size
is being collected for Windows processes, it can be also interesting to collectVirtual Bytes
. Alsosystem.process.memory.share
is not being calculated, remaining always as 0.For more context about this look at this thread: https://discuss.elastic.co/t/virtual-bytes-wrong-counter-in-metricbeat
Thinking on multi-platform support we might want to check what would be an equivalent of these metrics in Windows and Linux.
The text was updated successfully, but these errors were encountered: