Comando que exibe todos os contêineres ligados e o quanto de recursos (CPU, memória e I/O) estão consumindo.
$ docker stats -a
* Exibe todos os contêineres, inclusive os desligados.
Este comando funciona melhor se utilizado junto com o comando watch:
$ watch -n10 'docker stats --no-stream | egrep (NAME|meuapp)'
-a, --all Show all containers (default shows just running) --format string Pretty-print images using a Go template --no-stream Disable streaming stats and only pull the first result --no-trunc Do not truncate output
# docker stats --format "table {{.Name}}\t{{.CPUPerc}}\t{{.MemUsage}}\t{{.PIDs}}\t{{.NetIO}}\t{{.BlockIO}}"