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
Hello
thanks for this plugin ;) just to mention on linux the calculation of the mem percent is wrong on linux host:
total used free shared buffers cached Mem: 32114 29568 2546 680 1017 25988 -/+ buffers/cache: 2561 29552 Swap: 15258 25 15233
in the current calculation you are using only the "Mem" line but you need to use the "-/+ buffers/cache:" line to calculate the "real" memory usage
"free -/+ buffers/cache * 100 / Mem Total" (in the example above : 29552 * 100 / 32114)
Thanks
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello
thanks for this plugin ;)
just to mention on linux the calculation of the mem percent is wrong on linux host:
in the current calculation you are using only the "Mem" line but you need to use the "-/+ buffers/cache:" line to calculate the "real" memory usage
"free -/+ buffers/cache * 100 / Mem Total"
(in the example above : 29552 * 100 / 32114)
Thanks
The text was updated successfully, but these errors were encountered: