From d0caebad0b5c18ff4f39a272c9ce73526092076d Mon Sep 17 00:00:00 2001 From: Isabel Garcia Date: Fri, 26 May 2023 13:54:23 -0400 Subject: [PATCH] also extract 'total-time' --- spacer/log_scrab.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacer/log_scrab.py b/spacer/log_scrab.py index e464cc5..436e26d 100755 --- a/spacer/log_scrab.py +++ b/spacer/log_scrab.py @@ -227,7 +227,7 @@ def __init_matchers(self): self.matchers.append(BrunchStat()) regex = r'[(]?:(?P[a-zA-Z0-9_.-]+)\s+(?P\d+(:?[.]\d+)?)' flt = PrefixFilter( - ['SPACER-', 'time', 'virtual_solver', 'memory', 'max-memory']) + ['SPACER-', 'time', 'virtual_solver', 'memory', 'max-memory', 'total-time']) reMatch = ReMatch(regex=regex, filt=flt) self.matchers.append(reMatch)