I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit c75ff538 authored by zzz's avatar zzz
Browse files

a little peers.jsp cleanup

parent 7e71ead3
No related branches found
No related tags found
No related merge requests found
...@@ -627,8 +627,6 @@ public class NTCPTransport extends TransportImpl { ...@@ -627,8 +627,6 @@ public class NTCPTransport extends TransportImpl {
long sendTotal = 0; long sendTotal = 0;
long recvTotal = 0; long recvTotal = 0;
int numPeers = 0; int numPeers = 0;
int readingPeers = 0;
int writingPeers = 0;
float bpsSend = 0; float bpsSend = 0;
float bpsRecv = 0; float bpsRecv = 0;
long totalUptime = 0; long totalUptime = 0;
...@@ -636,7 +634,7 @@ public class NTCPTransport extends TransportImpl { ...@@ -636,7 +634,7 @@ public class NTCPTransport extends TransportImpl {
long totalRecv = 0; long totalRecv = 0;
StringBuffer buf = new StringBuffer(512); StringBuffer buf = new StringBuffer(512);
buf.append("<b id=\"ntcpcon\">NTCP connections: ").append(peers.size()); buf.append("<p><b id=\"ntcpcon\">NTCP connections: ").append(peers.size());
buf.append(" limit: ").append(getMaxConnections()); buf.append(" limit: ").append(getMaxConnections());
buf.append(" timeout: ").append(DataHelper.formatDuration(_pumper.getIdleTimeout())); buf.append(" timeout: ").append(DataHelper.formatDuration(_pumper.getIdleTimeout()));
buf.append("</b><br />\n"); buf.append("</b><br />\n");
...@@ -700,7 +698,6 @@ public class NTCPTransport extends TransportImpl { ...@@ -700,7 +698,6 @@ public class NTCPTransport extends TransportImpl {
buf.append("</code></td><td align=\"right\"><code>").append(outQueue).append(" message"); buf.append("</code></td><td align=\"right\"><code>").append(outQueue).append(" message");
if (outQueue > 1) if (outQueue > 1)
buf.append("s"); buf.append("s");
writingPeers++;
} }
buf.append("</code></td><td align=\"center\"><code>").append(con.getConsecutiveBacklog() > 0 ? "true" : "false"); buf.append("</code></td><td align=\"center\"><code>").append(con.getConsecutiveBacklog() > 0 ? "true" : "false");
long readTime = con.getReadTime(); long readTime = con.getReadTime();
...@@ -708,7 +705,6 @@ public class NTCPTransport extends TransportImpl { ...@@ -708,7 +705,6 @@ public class NTCPTransport extends TransportImpl {
buf.append("</code></td><td align=\"center\"><code>No"); buf.append("</code></td><td align=\"center\"><code>No");
} else { } else {
buf.append("</code></td><td><code>For ").append(DataHelper.formatDuration(readTime)); buf.append("</code></td><td><code>For ").append(DataHelper.formatDuration(readTime));
readingPeers++;
} }
buf.append("</code></td></tr>\n"); buf.append("</code></td></tr>\n");
out.write(buf.toString()); out.write(buf.toString());
...@@ -726,9 +722,7 @@ public class NTCPTransport extends TransportImpl { ...@@ -726,9 +722,7 @@ public class NTCPTransport extends TransportImpl {
buf.append("</td></tr>\n"); buf.append("</td></tr>\n");
} }
buf.append("</table>\n"); buf.append("</table></p>\n");
buf.append("Peers currently reading I2NP messages: ").append(readingPeers).append("<br />\n");
buf.append("Peers currently writing I2NP messages: ").append(writingPeers).append("<br />\n");
out.write(buf.toString()); out.write(buf.toString());
buf.setLength(0); buf.setLength(0);
} }
......
...@@ -1747,7 +1747,7 @@ public class UDPTransport extends TransportImpl implements TimedWeightedPriority ...@@ -1747,7 +1747,7 @@ public class UDPTransport extends TransportImpl implements TimedWeightedPriority
int numPeers = 0; int numPeers = 0;
StringBuffer buf = new StringBuffer(512); StringBuffer buf = new StringBuffer(512);
buf.append("<b id=\"udpcon\">UDP connections: ").append(peers.size()); buf.append("<p><b id=\"udpcon\">UDP connections: ").append(peers.size());
buf.append(" limit: ").append(getMaxConnections()); buf.append(" limit: ").append(getMaxConnections());
buf.append(" timeout: ").append(DataHelper.formatDuration(_expireTimeout)); buf.append(" timeout: ").append(DataHelper.formatDuration(_expireTimeout));
buf.append("</b><br />\n"); buf.append("</b><br />\n");
...@@ -1984,8 +1984,7 @@ public class UDPTransport extends TransportImpl implements TimedWeightedPriority ...@@ -1984,8 +1984,7 @@ public class UDPTransport extends TransportImpl implements TimedWeightedPriority
buf.append(sendTotal).append("</td><td align=\"right\">").append(recvTotal).append("</td>\n"); buf.append(sendTotal).append("</td><td align=\"right\">").append(recvTotal).append("</td>\n");
buf.append(" <td align=\"right\">").append(resentTotal); buf.append(" <td align=\"right\">").append(resentTotal);
buf.append("</td><td align=\"right\">").append(dupRecvTotal).append("</td>\n"); buf.append("</td><td align=\"right\">").append(dupRecvTotal).append("</td>\n");
buf.append(" </tr>\n"); buf.append(" </tr></table></p><p>\n");
buf.append("<tr><td colspan=\"15\" valign=\"top\" align=\"left\">");
long bytesTransmitted = _context.bandwidthLimiter().getTotalAllocatedOutboundBytes(); long bytesTransmitted = _context.bandwidthLimiter().getTotalAllocatedOutboundBytes();
// NPE here early // NPE here early
double averagePacketSize = _context.statManager().getRate("udp.sendPacketSize").getLifetimeAverageValue(); double averagePacketSize = _context.statManager().getRate("udp.sendPacketSize").getLifetimeAverageValue();
...@@ -1994,12 +1993,10 @@ public class UDPTransport extends TransportImpl implements TimedWeightedPriority ...@@ -1994,12 +1993,10 @@ public class UDPTransport extends TransportImpl implements TimedWeightedPriority
double nondupSent = ((double)bytesTransmitted - ((double)resentTotal)*averagePacketSize); double nondupSent = ((double)bytesTransmitted - ((double)resentTotal)*averagePacketSize);
double bwResent = (nondupSent <= 0 ? 0d : ((((double)resentTotal)*averagePacketSize) / nondupSent)); double bwResent = (nondupSent <= 0 ? 0d : ((((double)resentTotal)*averagePacketSize) / nondupSent));
buf.append("Percentage of bytes retransmitted (lifetime): ").append(formatPct(bwResent)); buf.append("Percentage of bytes retransmitted (lifetime): ").append(formatPct(bwResent));
buf.append(" <i>(includes retransmission required by packet loss)</i><br />\n"); buf.append(" <i>(includes retransmission required by packet loss)</i><br /></p>\n");
buf.append("</td></tr>\n");
out.write(buf.toString()); out.write(buf.toString());
buf.setLength(0); buf.setLength(0);
out.write(KEY); out.write(KEY);
out.write("</table>\n");
} }
private static final DecimalFormat _fmt = new DecimalFormat("#,##0.00"); private static final DecimalFormat _fmt = new DecimalFormat("#,##0.00");
...@@ -2015,8 +2012,9 @@ public class UDPTransport extends TransportImpl implements TimedWeightedPriority ...@@ -2015,8 +2012,9 @@ public class UDPTransport extends TransportImpl implements TimedWeightedPriority
} }
} }
private static final String KEY = "<tr><td colspan=\"15\" valign=\"top\" align=\"left\">" + private static final String KEY = "<p>" +
"<b id=\"def.peer\">peer</b>: the remote peer (&lt; inbound, &gt; outbound, v means they offer to introduce us, ^ means we offer to introduce them)<br />\n" + "<b id=\"def.peer\">peer</b>: the remote peer<br />\n" +
"<b id=\"def.dir\">dir</b>: v means they offer to introduce us, ^ means we offer to introduce them<br />\n" +
"<b id=\"def.idle\">idle</b>: the idle time is how long since a packet has been received or sent<br />\n" + "<b id=\"def.idle\">idle</b>: the idle time is how long since a packet has been received or sent<br />\n" +
"<b id=\"def.rate\">in/out</b>: the rates show a smoothed inbound and outbound transfer rate (KBytes per second)<br />\n" + "<b id=\"def.rate\">in/out</b>: the rates show a smoothed inbound and outbound transfer rate (KBytes per second)<br />\n" +
"<b id=\"def.up\">up</b>: the uptime is how long ago this session was established<br />\n" + "<b id=\"def.up\">up</b>: the uptime is how long ago this session was established<br />\n" +
...@@ -2034,7 +2032,7 @@ public class UDPTransport extends TransportImpl implements TimedWeightedPriority ...@@ -2034,7 +2032,7 @@ public class UDPTransport extends TransportImpl implements TimedWeightedPriority
"<b id=\"def.recv\">recv</b>: the number of packets received from the peer<br />\n" + "<b id=\"def.recv\">recv</b>: the number of packets received from the peer<br />\n" +
"<b id=\"def.resent\">resent</b>: the number of packets retransmitted to the peer<br />\n" + "<b id=\"def.resent\">resent</b>: the number of packets retransmitted to the peer<br />\n" +
"<b id=\"def.dupRecv\">dupRecv</b>: the number of duplicate packets received from the peer" + "<b id=\"def.dupRecv\">dupRecv</b>: the number of duplicate packets received from the peer" +
"</td></tr>\n"; "</p>\n";
/** /**
* Cache the bid to reduce object churn * Cache the bid to reduce object churn
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment