Skip to content

Instantly share code, notes, and snippets.

@joshbode
Created December 15, 2017 23:18
Show Gist options
  • Save joshbode/7da4b8e2af793f2ab17a9c44eb56a4a1 to your computer and use it in GitHub Desktop.
Save joshbode/7da4b8e2af793f2ab17a9c44eb56a4a1 to your computer and use it in GitHub Desktop.
Track Memory usage
function track_mem {
while (( 1 )); do
echo -en "$(date --iso-8601=s)\t"
ps -eo comm,pid,pmem,rss,vsz | grep "^$1"
sleep $2
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment