Created
July 5, 2023 19:53
-
-
Save akotlar/cab79d5a355c8c99dc9e4376b530c80d to your computer and use it in GitHub Desktop.
Log free memory every 2 seconds
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
while true; do echo -e "\n$(date '+%a %H:%M:%S.%3N')\t$(free -h | awk 'NR==2 {print "Total:", $2, "Used:", $3, "Free:", $4, "Shared:", $5, "Buff/Cache:", $6, "Available:", $7}')" >> /path/to/log; sleep 2; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment