From f234003054ff9175684082354b320ae9a8856f4b Mon Sep 17 00:00:00 2001 From: Dan Schatzberg Date: Thu, 1 Oct 2015 10:18:16 -0400 Subject: [PATCH] Fix incorrect stat reporting With the default Logger, mutilate was reporting the stddev as the minimum and the minimum as the 1st percentile. --- ConnectionStats.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ConnectionStats.h b/ConnectionStats.h index e957c19..3e2aabc 100644 --- a/ConnectionStats.h +++ b/ConnectionStats.h @@ -200,8 +200,8 @@ class ConnectionStats { } printf("%-7s %7.1f %7.1f %7.1f %7.1f %7.1f %7.1f %7.1f %7.1f", - tag, sampler.average(), sampler.stddev(), - sampler.get_nth(0), /*sampler.get_nth(1),*/ sampler.get_nth(5), + tag, sampler.average(), + sampler.get_nth(0), sampler.get_nth(1), sampler.get_nth(5), sampler.get_nth(10), sampler.get_nth(90), sampler.get_nth(95), sampler.get_nth(99));