Skip to content

Instantly share code, notes, and snippets.

@rusintez
Created February 19, 2016 13:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rusintez/7b2c5c35bdb571afed58 to your computer and use it in GitHub Desktop.
Save rusintez/7b2c5c35bdb571afed58 to your computer and use it in GitHub Desktop.
check docker containers memory consumption
for line in `docker ps | awk '{print $1}' | grep -v CONTAINER`; do docker ps | grep $line | awk '{printf $NF" "}' && echo $(( `cat /sys/fs/cgroup/memory/docker/$line*/memory.usage_in_bytes` / 1024 / 1024 ))MB ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment