From b51b0e1356d94ac11880ffa57b0d5d946608d3ae Mon Sep 17 00:00:00 2001 From: hno <> Date: Mon, 8 Apr 2002 04:16:47 +0000 Subject: [PATCH] Bugzilla #132: Better labels on the HTTP/ICP messages per minute to indicate these are averates since start, not current values. --- src/stat.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/stat.cc b/src/stat.cc index 923199abd1..11327ddf3e 100644 --- a/src/stat.cc +++ b/src/stat.cc @@ -1,6 +1,6 @@ /* - * $Id: stat.cc,v 1.355 2002/04/06 08:57:54 adrian Exp $ + * $Id: stat.cc,v 1.356 2002/04/07 22:16:47 hno Exp $ * * DEBUG: section 18 Cache Manager Statistics * AUTHOR: Harvest Derived @@ -476,9 +476,9 @@ info_get(StoreEntry * sentry) storeAppendPrintf(sentry, "\tRequest failure ratio:\t%5.2f%%\n", request_failure_ratio); - storeAppendPrintf(sentry, "\tHTTP requests per minute:\t%.1f\n", + storeAppendPrintf(sentry, "\tAverage HTTP requests per minute since start:\t%.1f\n", statCounter.client_http.requests / (runtime / 60.0)); - storeAppendPrintf(sentry, "\tICP messages per minute:\t%.1f\n", + storeAppendPrintf(sentry, "\tAverage ICP messages per minute since start:\t%.1f\n", (statCounter.icp.pkts_sent + statCounter.icp.pkts_recv) / (runtime / 60.0)); storeAppendPrintf(sentry, "\tSelect loop called: %d times, %0.3f ms avg\n", statCounter.select_loops, 1000.0 * runtime / statCounter.select_loops); -- 2.47.2