From 592f72d16fc83a127e3241e99ccddae39fa19009 Mon Sep 17 00:00:00 2001
From: Florian Fischer <florian.fl.fischer@fau.de>
Date: Thu, 8 Apr 2021 14:58:48 +0200
Subject: [PATCH] [EchoClient] collect the total amount of unexpected echos

My first test runs don't show unexpected echos. Therefore I think
unexpected echos are rare and their average will always be 0 even if
some sparse unexpected echos occur.
---
 apps/EchoClient.cpp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/apps/EchoClient.cpp b/apps/EchoClient.cpp
index d4230235..174f3cc8 100644
--- a/apps/EchoClient.cpp
+++ b/apps/EchoClient.cpp
@@ -365,12 +365,12 @@ auto main(int argc, char* argv[]) -> int {
 
 		RunningAverage avg_ns;
 		RunningAverage avg_iterations;
-		RunningAverage avg_unexpectedEchos;
+		uint64_t unexpectedEchos = 0;
 		uint64_t total_iterations = 0;
 		for (size_t i = 0; i < clients; ++i) {
 			avg_ns.update(clientResults[i].avg_ns);
 			avg_iterations.update(clientResults[i].iterations);
-			avg_unexpectedEchos.update(clientResults[i].unexpectedEchos);
+			unexpectedEchos += clientResults[i].unexpectedEchos;
 			total_iterations += clientResults[i].iterations;
 		}
 
@@ -401,8 +401,8 @@ auto main(int argc, char* argv[]) -> int {
 					<< std::endl;
 		}
 		sst << clients << "," << avg_iterations.getAverage() << "," << total_iterations << "," << size
-				<< "," << avg_ns.getAverage() << "," << avg_unexpectedEchos.getAverage() << ","
-				<< connect_duration << "," << echo_duration << "," << total_duration << std::endl;
+				<< "," << avg_ns.getAverage() << "," << unexpectedEchos << "," << connect_duration << ","
+				<< echo_duration << "," << total_duration << std::endl;
 
 		auto output = sst.str();
 		if (emper::io::writeFileAndWait(out_fd, output.c_str(), output.size()) < 0) {
-- 
GitLab