From a94ab376a3f536a3992c56258e1acc6454725a1f Mon Sep 17 00:00:00 2001 From: Klaus Post Date: Thu, 20 Feb 2020 18:21:38 -0800 Subject: [PATCH] Add skipped operation (#73) Otherwise they are simply excluded from the results and will not be printed. --- pkg/aggregate/aggregate.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/aggregate/aggregate.go b/pkg/aggregate/aggregate.go index a784c9f3..fed5aa8c 100644 --- a/pkg/aggregate/aggregate.go +++ b/pkg/aggregate/aggregate.go @@ -127,6 +127,7 @@ func Aggregate(o bench.Operations, segmentDur, skipDur time.Duration) Aggregated }) if len(segs) <= 1 { a.Skipped = true + res = append(res, a) continue } total := ops.Total(!isMixed)