From be179ffc417f0a2689b38b7a34a186331588fea3 Mon Sep 17 00:00:00 2001 From: Yu-Ju Hong Date: Fri, 28 Aug 2015 10:47:09 -0700 Subject: [PATCH] e2e: collect supervisord.log monit has been replaced with supervisord. Collect its log instead. --- test/e2e/core.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/core.go b/test/e2e/core.go index 941f1a3aaaa..2d1c42b754e 100644 --- a/test/e2e/core.go +++ b/test/e2e/core.go @@ -53,7 +53,7 @@ func CoreDump(dir string) { cmds := []command{ {"cat /var/log/kubelet.log", "kubelet"}, {"cat /var/log/kube-proxy.log", "kube-proxy"}, - {"cat /var/log/monit.log", "monit"}, + {"cat /var/log/supervisor/supervisord.log", "supervisord"}, } logCore(cmds, hosts, dir, provider) @@ -69,7 +69,7 @@ func CoreDump(dir string) { {"cat /var/log/kube-apiserver.log", "kube-apiserver"}, {"cat /var/log/kube-scheduler.log", "kube-scheduler"}, {"cat /var/log/kube-controller-manager.log", "kube-controller-manager"}, - {"cat /var/log/monit.log", "monit"}, + {"cat /var/log/supervisor/supervisord.log", "supervisord"}, } logCore(cmds, []string{master}, dir, provider) }