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
I got Memory 0 with the script but is impossible.
So checking on the code I got:
[domain@machine ~]$ free -m total used free shared buff/cache available Mem: 128817 8881 9009 5416 110926 112742 Swap: 16383 13 16370 [domain@machine ~]$ free -m | awk 'NR==3{print $3}' 13
Seems that take the value from swap on the wrong line
The text was updated successfully, but these errors were encountered:
I patched using: local USED_MEM=$( free -m | awk 'NR==2{print $3}' )
local USED_MEM=$( free -m | awk 'NR==2{print $3}' )
Sorry, something went wrong.
Fix: USED_MEM use correct row
df1177e
Freemius#4
Fix: USED_MEM gets data from correct row
7e3d7e2
No branches or pull requests
I got Memory 0 with the script but is impossible.
So checking on the code I got:
Seems that take the value from swap on the wrong line
The text was updated successfully, but these errors were encountered: