github.com/flavio/docker@v0.1.3-0.20170117145210-f63d1a6eec47/man/src/container/stats.md (about) 1 Display a live stream of one or more containers' resource usage statistics 2 3 # Format 4 5 Pretty-print containers statistics using a Go template. 6 Valid placeholders: 7 .Container - Container name or ID. 8 .Name - Container name. 9 .ID - Container ID. 10 .CPUPerc - CPU percentage. 11 .MemUsage - Memory usage. 12 .NetIO - Network IO. 13 .BlockIO - Block IO. 14 .MemPerc - Memory percentage (Not available on Windows). 15 .PIDs - Number of PIDs (Not available on Windows). 16 17 # EXAMPLES 18 19 Running `docker container stats` on all running containers 20 21 $ docker container stats 22 CONTAINER CPU % MEM USAGE / LIMIT MEM % NET I/O BLOCK I/O 23 1285939c1fd3 0.07% 796 KiB / 64 MiB 1.21% 788 B / 648 B 3.568 MB / 512 KB 24 9c76f7834ae2 0.07% 2.746 MiB / 64 MiB 4.29% 1.266 KB / 648 B 12.4 MB / 0 B 25 d1ea048f04e4 0.03% 4.583 MiB / 64 MiB 6.30% 2.854 KB / 648 B 27.7 MB / 0 B 26 27 Running `docker container stats` on multiple containers by name and id. 28 29 $ docker container stats fervent_panini 5acfcb1b4fd1 30 CONTAINER CPU % MEM USAGE/LIMIT MEM % NET I/O 31 5acfcb1b4fd1 0.00% 115.2 MiB/1.045 GiB 11.03% 1.422 kB/648 B 32 fervent_panini 0.02% 11.08 MiB/1.045 GiB 1.06% 648 B/648 B