diagnostics: add more log files and more content from logfiles

Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
This commit is contained in:
Rolf Neugebauer 2016-06-07 14:38:33 +01:00
parent 05178c2c13
commit 218e9de40c

View File

@ -89,7 +89,10 @@ func capture(w *tar.Writer) {
run(t, w, "/usr/sbin/brctl", "show")
run(t, w, "/bin/dmesg")
run(t, w, "/usr/bin/docker", "ps")
run(t, w, "/usr/bin/tail", "/var/log/docker.log")
run(t, w, "/usr/bin/tail", "-100", "/var/log/docker.log")
run(t, w, "/usr/bin/tail", "-100", "/var/log/messages")
run(t, w, "/usr/bin/tail", "-100", "/var/log/proxy-vsockd.log")
run(t, w, "/usr/bin/tail", "-100", "/var/log/vsudd.log")
run(t, w, "/bin/mount")
run(t, w, "/bin/df")
run(t, w, "/bin/ls", "-l", "/var")