diff options
author | Jake Hunsaker <jhunsake@redhat.com> | 2018-06-04 16:55:51 -0400 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2018-06-07 15:55:36 +0100 |
commit | d22f226c642053b30c4bf9520e8fdd5611c7dc33 (patch) | |
tree | 14a8e02ac6ca8486ce68ea4371d2bf2b410a7e73 | |
parent | e3b7395c3c1b0ecf060f0e212c1bb639ac98e33f (diff) | |
download | sos-d22f226c642053b30c4bf9520e8fdd5611c7dc33.tar.gz |
[docker] Collect events and storage information
Adds collection of the previous day's worth of events handled by the
daemon, a summarized output of storage needs, and a listing of volumes
known to the daemon.
Resolves: #1328
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/docker.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sos/plugins/docker.py b/sos/plugins/docker.py index 208c41b6..a44264a4 100644 --- a/sos/plugins/docker.py +++ b/sos/plugins/docker.py @@ -34,13 +34,16 @@ class Docker(Plugin): ]) subcmds = [ + 'events --since 24h --until 1s', 'info', 'images', 'network ls', 'ps', 'ps -a', 'stats --no-stream', - 'version' + 'system df', + 'version', + 'volume ls' ] for subcmd in subcmds: |