From 901d8c305e81dfac25e63a263f032d32dc207041 Mon Sep 17 00:00:00 2001 From: wessels <> Date: Thu, 19 Feb 1998 05:55:44 +0000 Subject: [PATCH] oops, dns service time is milli-seconds, not micro-seconds --- src/stat.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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", -- 2.47.2