From 93420b2a9ba0841b50ca877feeb2bc7d7146958b Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Sun, 24 Jul 2011 16:06:08 +0000 Subject: [PATCH] reorder rendering of some graphs --- parse_session_stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parse_session_stats.py b/parse_session_stats.py index 804ca7715..842f0d628 100755 --- a/parse_session_stats.py +++ b/parse_session_stats.py @@ -117,7 +117,7 @@ reports = [ ('average_disk_queue_time', 'job queued time', 's', 'running averages of disk queue time', ['disk queue time', 'disk job time']), ('disk_time', '% of total disk job time', '%%', 'proportion of time spent by the disk thread', ['% read time', '% write time', '% hash time', '% sort time']), ('disk_cache_hits', 'blocks (16kiB)', '', '', ['disk block read', 'read cache hits', 'disk block written', 'disk read back']), - ('disk_cache', 'blocks (16kiB)', '', 'disk cache size and usage', ['read disk cache size', 'disk cache size', 'disk buffer allocations', 'cache size']), + ('disk_cache', 'blocks (16kiB)', '', 'disk cache size and usage', ['disk buffer allocations', 'read disk cache size', 'disk cache size', 'cache size']), ('disk_readback', '% of written blocks', '%%', 'portion of written blocks that had to be read back for hash verification', ['% read back']), ('disk_queue', 'number of queued disk jobs', '', 'queued disk jobs', ['disk queue size', 'disk read queue size', 'read job queue size limit']), ('disk_iops', 'operations/s', '', 'number of disk operations per second', ['read ops/s', 'write ops/s', 'smooth read ops/s', 'smooth write ops/s']),