2015-01-19 19:10:26 -05:00
|
|
|
% DOCKER(1) Docker User Manuals
|
|
|
|
% Docker Community
|
|
|
|
% JUNE 2014
|
|
|
|
# NAME
|
2015-01-21 14:44:23 -05:00
|
|
|
docker-stats - Display a live stream of one or more containers' resource usage statistics
|
2015-01-19 19:10:26 -05:00
|
|
|
|
|
|
|
# SYNOPSIS
|
2015-01-20 21:13:47 -05:00
|
|
|
**docker stats**
|
2015-01-19 19:10:26 -05:00
|
|
|
[**--help**]
|
2015-02-13 15:09:56 -05:00
|
|
|
CONTAINER [CONTAINER...]
|
2015-01-19 19:10:26 -05:00
|
|
|
|
|
|
|
# DESCRIPTION
|
|
|
|
|
2015-01-21 14:44:23 -05:00
|
|
|
Display a live stream of one or more containers' resource usage statistics
|
2015-01-19 19:10:26 -05:00
|
|
|
|
|
|
|
# OPTIONS
|
|
|
|
**--help**
|
|
|
|
Print usage statement
|
|
|
|
|
2015-02-13 11:45:04 -05:00
|
|
|
**--no-stream**="false"
|
|
|
|
Disable streaming stats and only pull the first result
|
|
|
|
|
2015-01-19 19:10:26 -05:00
|
|
|
# EXAMPLES
|
|
|
|
|
|
|
|
Run **docker stats** with multiple containers.
|
|
|
|
|
2015-03-26 14:12:37 -04:00
|
|
|
$ docker stats redis1 redis2
|
2015-01-19 19:10:26 -05:00
|
|
|
CONTAINER CPU % MEM USAGE/LIMIT MEM % NET I/O
|
2015-04-14 06:34:20 -04:00
|
|
|
redis1 0.07% 796 KB/64 MB 1.21% 788 B/648 B
|
2015-04-08 00:25:41 -04:00
|
|
|
redis2 0.07% 2.746 MB/64 MB 4.29% 1.266 KB/648 B
|
2015-01-19 19:10:26 -05:00
|
|
|
|