From: Amos Jeffries Date: Sun, 15 Nov 2015 09:45:47 +0000 (-0800) Subject: Use pipeline stats in cachemgr reports X-Git-Tag: SQUID_4_0_3~5^2~25 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9dde3c2a8c8d0ebc8a4065814d68ab1534534a35;p=thirdparty%2Fsquid.git Use pipeline stats in cachemgr reports --- diff --git a/src/stat.cc b/src/stat.cc index 50fe433c6f..1f64c354e5 100644 --- a/src/stat.cc +++ b/src/stat.cc @@ -1862,8 +1862,7 @@ statClientRequests(StoreEntry * s) conn->clientConnection->remote.toUrl(buf,MAX_IPSTRLEN)); storeAppendPrintf(s, "\tlocal: %s\n", conn->clientConnection->local.toUrl(buf,MAX_IPSTRLEN)); - storeAppendPrintf(s, "\tnrequests: %d\n", - conn->nrequests); + storeAppendPrintf(s, "\tnrequests: %u\n", conn->pipeline.nrequests); } storeAppendPrintf(s, "uri %s\n", http->uri);