summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1c4fe43)
raw | patch | inline | side by side (parent: 1c4fe43)
author | Pavel Rochnyack <pavel2000@ngs.ru> | |
Sun, 20 Mar 2016 09:43:36 +0000 (15:43 +0600) | ||
committer | Pavel Rochnyack <pavel2000@ngs.ru> | |
Thu, 11 Aug 2016 04:35:31 +0000 (10:35 +0600) |
src/utils_latency.c | patch | blob | history |
diff --git a/src/utils_latency.c b/src/utils_latency.c
index bfb9292c4993ff0b8a4e1430fa33249b879d5d6b..c67752a376b67d1475ef0bc1c45e61aa7064ee58 100644 (file)
--- a/src/utils_latency.c
+++ b/src/utils_latency.c
if (lc == NULL)
return (NULL);
- latency_counter_reset (lc);
lc->bin_width = HISTOGRAM_DEFAULT_BIN_WIDTH;
+ latency_counter_reset (lc);
return (lc);
} /* }}} latency_counter_t *latency_counter_create */
return;
cdtime_t bin_width = lc->bin_width;
+ cdtime_t max_bin = (lc->max - 1) / lc->bin_width;
+
+/*
+ If max latency is REDUCE_THRESHOLD times less than histogram's range,
+ then cut it in half. REDUCE_THRESHOLD must be >= 2.
+ Value of 4 is selected to reduce frequent changes of bin width.
+*/
+#define REDUCE_THRESHOLD 4
+ if ((lc->num > 0) && (lc->bin_width >= HISTOGRAM_DEFAULT_BIN_WIDTH * 2)
+ && (max_bin < HISTOGRAM_NUM_BINS / REDUCE_THRESHOLD))
+ {
+ /* new bin width will be the previous power of 2 */
+ bin_width = bin_width / 2;
+
+ DEBUG("utils_latency: latency_counter_reset: max_latency = %.3f; "
+ "max_bin = %"PRIu64"; old_bin_width = %.3f; new_bin_width = %.3f;",
+ CDTIME_T_TO_DOUBLE (lc->max),
+ max_bin,
+ CDTIME_T_TO_DOUBLE (lc->bin_width),
+ CDTIME_T_TO_DOUBLE (bin_width));
+ }
+
memset (lc, 0, sizeof (*lc));
/* preserve bin width */