#define SKIP_BASIC_SZ ((size_t) 6)
-/* stat.c */
-#define N_COUNT_HIST 61
+#define COUNT_INTERVAL 60
+/*
+ * keep 60 minutes' worth of per-minute readings (+ current reading)
+ */
+#define N_COUNT_HIST (3600 / COUNT_INTERVAL) + 1
+/*
+ * keep 3 days' (72 hours) worth of hourly readings
+*/
+#define N_COUNT_HOUR_HIST (86400 * 3) / (60 * COUNT_INTERVAL)
/* were to look for errors if config path fails */
#define DEFAULT_SQUID_ERROR_DIR "/usr/local/squid/etc/errors"