From 5a2d75551d01747f524cbb6cb44a498d9e3db61e Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sat, 19 Dec 2015 22:56:10 +0900 Subject: [PATCH] h2load: Remove "(client)" from per-client req/s stat for simplicity --- doc/h2load.h2r | 2 +- src/h2load.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/h2load.h2r b/doc/h2load.h2r index 8cabe533..f06f7e01 100644 --- a/doc/h2load.h2r +++ b/doc/h2load.h2r @@ -88,7 +88,7 @@ time for 1st byte (of (decrypted in case of TLS) application data) deviation range (mean +/- sd) against total number of successful connections. -req/s (client) +req/s min The minimum request per second among all clients. max diff --git a/src/h2load.cc b/src/h2load.cc index 3f642eb6..1b8bd343 100644 --- a/src/h2load.cc +++ b/src/h2load.cc @@ -2253,7 +2253,7 @@ time for request: )" << std::setw(10) << util::format_duration(ts.request.min) << util::format_duration(ts.ttfb.mean) << " " << std::setw(10) << util::format_duration(ts.ttfb.sd) << std::setw(9) << util::dtos(ts.ttfb.within_sd) << "%" - << "\nreq/s (client) : " << std::setw(10) << ts.rps.min << " " + << "\nreq/s : " << std::setw(10) << ts.rps.min << " " << std::setw(10) << ts.rps.max << " " << std::setw(10) << ts.rps.mean << " " << std::setw(10) << ts.rps.sd << std::setw(9) << util::dtos(ts.rps.within_sd) << "%" << std::endl;