From: wessels <> Date: Thu, 19 Feb 1998 05:55:44 +0000 (+0000) Subject: oops, dns service time is milli-seconds, not micro-seconds X-Git-Tag: SQUID_3_0_PRE1~4063 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=901d8c305e81dfac25e63a263f032d32dc207041;p=thirdparty%2Fsquid.git oops, dns service time is milli-seconds, not micro-seconds --- diff --git a/src/stat.cc b/src/stat.cc index eb15195921..54bb53cdf2 100644 --- a/src/stat.cc +++ b/src/stat.cc @@ -1,6 +1,6 @@ /* - * $Id: stat.cc,v 1.199 1998/02/18 22:54:02 wessels Exp $ + * $Id: stat.cc,v 1.200 1998/02/18 22:55:44 wessels Exp $ * * DEBUG: section 18 Cache Manager Statistics * AUTHOR: Harvest Derived @@ -721,7 +721,7 @@ statAvgDump(StoreEntry * sentry, int minutes) x / 1000000.0); x = statLogHistDeltaMedian(&l->dns.svc_time, &f->dns.svc_time); storeAppendPrintf(sentry, "dns.median_svc_time = %f seconds\n", - x / 1000000.0); + x / 1000.0); storeAppendPrintf(sentry, "unlink.requests = %f/sec\n", XAVG(unlink.requests)); storeAppendPrintf(sentry, "page_faults = %f/sec\n",