From bb7b1a2bd020b92468465b6d337fa4e379984363 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Tue, 25 Aug 2020 12:38:49 -0400 Subject: [PATCH] Remove aggrpct from results This value is useless to us since we're not running combined read/write tests at all. --- api-daemon/pvcapid/benchmark.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/api-daemon/pvcapid/benchmark.py b/api-daemon/pvcapid/benchmark.py index 3a1de714..f190dd1b 100755 --- a/api-daemon/pvcapid/benchmark.py +++ b/api-daemon/pvcapid/benchmark.py @@ -332,7 +332,6 @@ def run_benchmark(self, pool): # Bandwidth # 41: min # 42: max - # 43: agg % of total # 44: mean # 45: stdev # 46: # samples @@ -364,7 +363,6 @@ def run_benchmark(self, pool): "bandwidth": { "min": results[41], "max": results[42], - "aggrpct": results[43], "mean": results[44], "stdev": results[45], "numsamples": results[46], @@ -399,7 +397,6 @@ def run_benchmark(self, pool): # Bandwidth # 88: min # 89: max - # 90: agg % of total # 91: mean # 92: stdev # 93: # samples @@ -431,7 +428,6 @@ def run_benchmark(self, pool): "bandwidth": { "min": results[88], "max": results[89], - "aggrpct": results[90], "mean": results[91], "stdev": results[92], "numsamples": results[93],