Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jamesduncombe/40a6dabd9edeca63034c32c4fe453305 to your computer and use it in GitHub Desktop.
Save jamesduncombe/40a6dabd9edeca63034c32c4fe453305 to your computer and use it in GitHub Desktop.
Find total percentage of containers
$ docker stats --no-stream | awk '{ gsub("%", "", $7); print $7 }' | tail +2 | paste -sd+ - | bc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment