extern OBJH storeDirStats;
extern OBJH pconnHistDump;
extern void dump_peers(StoreEntry *, peer *);
+extern OBJH statCounters;
extern OBJH statAvg5min;
extern OBJH statAvg60min;
/*
- * $Id: stat.cc,v 1.195 1998/02/10 21:44:35 wessels Exp $
+ * $Id: stat.cc,v 1.196 1998/02/12 23:52:16 wessels Exp $
*
* DEBUG: section 18 Cache Manager Statistics
* AUTHOR: Harvest Derived
}
void
-statAvg5min(StoreEntry * e)
+statCounters(StoreEntry * e)
{
-#if NOT_YET
statCountersDump(e);
- storeAppendPrintf(e, "\n");
-#endif
+}
+
+void
+statAvg5min(StoreEntry * e)
+{
statAvgDump(e, 5);
}
void
statAvg60min(StoreEntry * e)
{
-#if NOT_YET
- statCountersDump(e);
- storeAppendPrintf(e, "\n");
-#endif
statAvgDump(e, 60);
}