diff --git a/core/java/src/net/i2p/client/I2PSessionImpl2.java b/core/java/src/net/i2p/client/I2PSessionImpl2.java index a87a714bcf38ee5560b9af7e2c769e5e2973ba93..0b60ef454db240e820f9cbd7a7341587a0242284 100644 --- a/core/java/src/net/i2p/client/I2PSessionImpl2.java +++ b/core/java/src/net/i2p/client/I2PSessionImpl2.java @@ -57,7 +57,13 @@ class I2PSessionImpl2 extends I2PSessionImpl { //ctx.statManager().createRateStat("i2cp.sendBestEffortStage2", "third part of sendBestEffort?", "i2cp", new long[] { 10*60*1000 } ); //ctx.statManager().createRateStat("i2cp.sendBestEffortStage3", "fourth part of sendBestEffort?", "i2cp", new long[] { 10*60*1000 } ); //ctx.statManager().createRateStat("i2cp.sendBestEffortStage4", "fifth part of sendBestEffort?", "i2cp", new long[] { 10*60*1000 } ); - + _context.statManager().createRateStat("i2cp.receiveStatusTime.0", "How long it took to get status=0 back", "i2cp", new long[] { 60*1000, 10*60*1000 }); + _context.statManager().createRateStat("i2cp.receiveStatusTime.1", "How long it took to get status=1 back", "i2cp", new long[] { 60*1000, 10*60*1000 }); + _context.statManager().createRateStat("i2cp.receiveStatusTime.2", "How long it took to get status=2 back", "i2cp", new long[] { 60*1000, 10*60*1000 }); + _context.statManager().createRateStat("i2cp.receiveStatusTime.3", "How long it took to get status=3 back", "i2cp", new long[] { 60*1000, 10*60*1000 }); + _context.statManager().createRateStat("i2cp.receiveStatusTime.4", "How long it took to get status=4 back", "i2cp", new long[] { 60*1000, 10*60*1000 }); + _context.statManager().createRateStat("i2cp.receiveStatusTime.5", "How long it took to get status=5 back", "i2cp", new long[] { 60*1000, 10*60*1000 }); + _context.statManager().createRateStat("i2cp.receiveStatusTime", "How long it took to get any status", "i2cp", new long[] { 60*1000, 10*60*1000 }); } protected long getTimeout() { @@ -296,6 +302,26 @@ class I2PSessionImpl2 extends I2PSessionImpl { state.setMessageId(id); } state.receive(status); + + long lifetime = state.getElapsed(); + switch (status) { + case 1: + _context.statManager().addRateData("i2cp.receiveStatusTime.1", lifetime, 0); + break; + case 2: + _context.statManager().addRateData("i2cp.receiveStatusTime.2", lifetime, 0); + break; + case 3: + _context.statManager().addRateData("i2cp.receiveStatusTime.3", lifetime, 0); + break; + case 4: + _context.statManager().addRateData("i2cp.receiveStatusTime.4", lifetime, 0); + break; + case 5: + _context.statManager().addRateData("i2cp.receiveStatusTime.5", lifetime, 0); + break; + } + } else { if (_log.shouldLog(Log.INFO)) _log.info(getPrefix() + "No matching state for messageId " + msgId + " / " + nonce diff --git a/core/java/src/net/i2p/util/EepGet.java b/core/java/src/net/i2p/util/EepGet.java index 5933b7b6a5525578f6dedfad771a1a48f6257e9f..a52ae0d87365f577702c234c26ce2c68463328b0 100644 --- a/core/java/src/net/i2p/util/EepGet.java +++ b/core/java/src/net/i2p/util/EepGet.java @@ -506,7 +506,8 @@ public class EepGet { try { return Integer.parseInt(rc); } catch (NumberFormatException nfe) { - nfe.printStackTrace(); + if (_log.shouldLog(Log.WARN)) + _log.warn("ERR: status is invalid: " + line, nfe); return -1; } }