From 715abdea562213eb4ee60d28f3d5529241bbd6b8 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Tue, 1 May 2012 22:26:03 -0700 Subject: [PATCH] ignore syslog cron noise --- teuthology/task/internal.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/teuthology/task/internal.py b/teuthology/task/internal.py index 6478e4c3497..7142087d15a 100644 --- a/teuthology/task/internal.py +++ b/teuthology/task/internal.py @@ -387,6 +387,8 @@ kern.* -/tmp/cephtest/archive/syslog/kern.log;RSYSLOG_FileFormat run.Raw('|'), 'grep', '-v', 'DEBUG: fsize', # xfs_fsr run.Raw('|'), + 'grep', '-v', 'CRON', # ignore cron noise + run.Raw('|'), 'head', '-n', '1', ], stdout=StringIO(),