github.com/jogo/docker@v1.7.0-rc1/docs/man/docker-stats.1.md (about)

     1  % DOCKER(1) Docker User Manuals
     2  % Docker Community
     3  % JUNE 2014
     4  # NAME
     5  docker-stats - Display a live stream of one or more containers' resource usage statistics
     6  
     7  # SYNOPSIS
     8  **docker stats**
     9  [**--help**]
    10  CONTAINER [CONTAINER...]
    11  
    12  # DESCRIPTION
    13  
    14  Display a live stream of one or more containers' resource usage statistics
    15  
    16  # OPTIONS
    17  **--help**
    18    Print usage statement
    19  
    20  **--no-stream**="false"
    21    Disable streaming stats and only pull the first result
    22  
    23  # EXAMPLES
    24  
    25  Run **docker stats** with multiple containers.
    26  
    27      $ docker stats redis1 redis2
    28      CONTAINER           CPU %               MEM USAGE/LIMIT     MEM %               NET I/O
    29      redis1              0.07%               796 KB/64 MB        1.21%               788 B/648 B
    30      redis2              0.07%               2.746 MB/64 MB      4.29%               1.266 KB/648 B
    31