2006-04-08 jrandom

* Stat summarization fix (removing the occational holes in the jrobin
      graphs)
This commit is contained in:
jrandom
2006-04-09 01:14:08 +00:00
committed by zzz
parent c76402a160
commit ab3f1b708d
4 changed files with 10 additions and 4 deletions

View File

@ -188,6 +188,8 @@ public class Rate {
long measuredPeriod = now - _lastCoalesceDate;
if (measuredPeriod < _period - SLACK) {
// no need to coalesce (assuming we only try to do so once per minute)
if (_log.shouldLog(Log.WARN))
_log.warn("not coalescing, measuredPeriod = " + measuredPeriod + " period = " + _period);
return;
}