From 6597cbfa48f814981e2298b2d4691229a21784fc Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sun, 18 Dec 2011 12:40:56 +0000 Subject: make seivots-summary report fsck and verify results --- seivots-summary | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/seivots-summary b/seivots-summary index ed0a404..f77109b 100755 --- a/seivots-summary +++ b/seivots-summary @@ -101,7 +101,9 @@ class SeivotsSummary(cliapp.Application): for group, caption in self.find_groups(seivots): title = 'Profile: %s' % caption self.output.write('%s\n%s\n\n' % (title, '-' * len(title))) - for op in ['backup', 'restore', 'list_files', 'forget']: + ops = ['backup', 'restore', 'list_files', 'forget', 'fsck', + 'verify'] + for op in ops: self.output.write('Operation: %s\n\n' % op) table = self.make_table(group, op) table.write_plaintext(self.output) @@ -142,6 +144,12 @@ class SeivotsSummary(cliapp.Application): 'forget': ('gen0-time', 'gen0-ram', 'slowest-time', 'biggest-ram', 'repo-writes', 'repo-reads'), + 'fsck': + ('gen0-time', 'gen0-ram', 'slowest-time', 'biggest-ram', + 'repo-writes', 'repo-reads'), + 'verify': + ('gen0-time', 'gen0-speed', 'gen0-ram', 'slowest-time', + 'slowest-speed', 'biggest-ram','repo-writes', 'repo-reads'), } suffix = ('branch', 'description') colnames = prefix + which[op] + suffix -- cgit v1.2.1