Command Stats
用于返回运行中的容器的裡数据流
| $ docker stats --help
Usage: docker stats [OPTIONS] [CONTAINER...]
Display a live stream of container(s) resource usage statistics
Options:
-a, --all Show all containers (default shows just running)
--format string Pretty-print images using a Go template
--help Print usage
--no-stream Disable streaming stats and only pull the first result
|
示例1:查看所有容器运行资源状态
| $ docker stats
CONTAINER CPU % MEM USAGE / LIMIT MEM % NET I/O BLOCK I/O PIDS
10427e190c59 0.00% 15.94MiB / 47.01GiB 0.03% 0B / 0B 0B / 0B 0
39cb0a19e07e 0.06% 928KiB / 47.01GiB 0.00% 693MB / 683MB 0B / 0B 0
ce9db3c0e256 0.00% 80.83MiB / 47.01GiB 0.17% 0B / 0B 0B / 0B 0
CONTAINER CPU % MEM USAGE / LIMIT MEM % NET I/O BLOCK I/O PIDS
10427e190c59 0.16% 15.94MiB / 47.01GiB 0.03% 0B / 0B 0B / 0B 0
39cb0a19e07e 0.03% 928KiB / 47.01GiB 0.00% 693MB / 683MB 0B / 0B 0
ce9db3c0e256 0.06% 80.73MiB / 47.01GiB 0.17% 0B / 0B 0B / 0B 0
|
默认情况下,stats 使用参数 -a
或者 --all
,命令会每隔 1 秒钟刷新一次输出的内容直到你按下 ctrl + c
CONTAINER
:以短格式显示容器 ID
CPU %
:CPU 占用情况
MEM USAGE / LIMIT
:当前使用的内存和最大可使用的内存
MEM %
:以百分比的形式显示内存使用情况
NET I/O
:网络 I/O 数据
BLOCK I/O
:磁盘 I/O 数据
PIDS
:PID 号
如不想持续的监控容器使用资源的情况,可通过 --no-stream
选项只输出当前的状态
| $ docker stats --no-stream
CONTAINER CPU % MEM USAGE / LIMIT MEM % NET I/O BLOCK I/O PIDS
10427e190c59 0.00% 15.94MiB / 47.01GiB 0.03% 0B / 0B 0B / 0B 0
39cb0a19e07e 0.06% 928KiB / 47.01GiB 0.00% 693MB / 683MB 0B / 0B 0
ce9db3c0e256 0.00% 80.83MiB / 47.01GiB 0.17% 0B / 0B 0B / 0B 0
|
示例2:指定查看某个正启动的容器资源使用情况
| $ docker stats ca2f272bd780
CONTAINER CPU % MEM USAGE / LIMIT MEM % NET I/O BLOCK I/O PIDS
ca2f272bd780 0.00% 21.12MiB / 47.01GiB 0.04% 103GB / 5.06TB 0B / 66.8GB 0
|
示例3:查看所有容器并以指定格式显示
| $ docker stats --all --format "table {{.Container}}\t{{.CPUPerc}}\t{{.MemUsage}}"
CONTAINER CPU % MEM USAGE / LIMIT
10427e190c59 0.01% 15.94MiB / 47.01GiB
39cb0a19e07e 0.13% 928KiB / 47.01GiB
ce9db3c0e256 0.00% 80.8MiB / 47.01GiB
$ docker stats --all --format "table {{.Container}}***{{.CPUPerc}}***{{.MemUsage}}"
CONTAINER***CPU %***MEM USAGE / LIMIT
10427e190c59***0.08%***15.94MiB / 47.01GiB
39cb0a19e07e***0.03%***928KiB / 47.01GiB
ce9db3c0e256***0.00%***81.3MiB / 47.01GiB
|