forked from I2P_Developers/i2p.i2p
2006-04-08 jrandom
* Stat summarization fix (removing the occational holes in the jrobin graphs)
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
||||
|
@ -1,4 +1,8 @@
|
||||
$Id: history.txt,v 1.448 2006/04/06 20:26:33 jrandom Exp $
|
||||
$Id: history.txt,v 1.449 2006/04/08 01:15:45 jrandom Exp $
|
||||
|
||||
2006-04-08 jrandom
|
||||
* Stat summarization fix (removing the occational holes in the jrobin
|
||||
graphs)
|
||||
|
||||
2006-04-08 jrandom
|
||||
* Process inbound tunnel requests more efficiently
|
||||
|
@ -1087,7 +1087,7 @@ class CoalesceStatsEvent implements SimpleTimer.TimedEvent {
|
||||
}
|
||||
}
|
||||
|
||||
SimpleTimer.getInstance().addEvent(this, 60*1000);
|
||||
SimpleTimer.getInstance().addEvent(this, 20*1000);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -15,9 +15,9 @@ import net.i2p.CoreVersion;
|
||||
*
|
||||
*/
|
||||
public class RouterVersion {
|
||||
public final static String ID = "$Revision: 1.388 $ $Date: 2006/04/06 20:26:33 $";
|
||||
public final static String ID = "$Revision: 1.389 $ $Date: 2006/04/08 01:15:46 $";
|
||||
public final static String VERSION = "0.6.1.14";
|
||||
public final static long BUILD = 3;
|
||||
public final static long BUILD = 4;
|
||||
public static void main(String args[]) {
|
||||
System.out.println("I2P Router version: " + VERSION + "-" + BUILD);
|
||||
System.out.println("Router ID: " + RouterVersion.ID);
|
||||
|
Reference in New Issue
Block a user