Changeset d2f3a26
- Timestamp:
- Feb 13, 2008 11:49:24 AM (13 years ago)
- Branches:
- master
- Children:
- 69cc0af
- Parents:
- 43f2695
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
apps/routerconsole/java/src/net/i2p/router/web/GraphHelper.java
r43f2695 rd2f3a26 71 71 72 72 if (hasTx && hasRx && !_showEvents) 73 _out.write("<a href=\"viewstat.jsp?stat=bw.combined" 74 + "&periodCount=" + (3 * _periodCount ) 75 + "&width=" + (3 * _width) 76 + "&height=" + (3 * _height) 77 + "\" />"); 73 78 _out.write("<img width=\"" 74 79 + (_width + 83) + "\" height=\"" + (_height + 92) … … 77 82 + "&width=" + _width 78 83 + "&height=" + (_height - 14) 79 + "\" title=\"Combined bandwidth graph\" /> \n");84 + "\" title=\"Combined bandwidth graph\" /></a>\n"); 80 85 81 86 for (Iterator iter = ordered.iterator(); iter.hasNext(); ) { … … 83 88 Rate r = lsnr.getRate(); 84 89 String title = r.getRateStat().getName() + " for " + DataHelper.formatDuration(_periodCount * r.getPeriod()); 85 _out.write("<img width=\"" 90 _out.write("<a href=\"viewstat.jsp?stat=" 91 + r.getRateStat().getName() 92 + "&showEvents=" + _showEvents 93 + "&period=" + r.getPeriod() 94 + "&periodCount=" + (3 * _periodCount) 95 + "&width=" + (3 * _width) 96 + "&height=" + (3 * _height) 97 + "\" />"); 98 _out.write("<img border=\"0\" width=\"" 86 99 + (_width + 83) + "\" height=\"" + (_height + 92) 87 100 + "\" src=\"viewstat.jsp?stat=" … … 92 105 + "&width=" + _width 93 106 + "&height=" + _height 94 + "\" title=\"" + title + "\" /> \n");107 + "\" title=\"" + title + "\" /></a>\n"); 95 108 } 96 109 if (_refreshDelaySeconds > 0) -
checklist.txt
r43f2695 rd2f3a26 12 12 news.xml 13 13 router/java/src/net/i2p/router/RouterVersion.java 14 core/java/src/net/i2p/CoreVersion.java 14 15 15 16 Build and tag: -
core/java/src/net/i2p/util/SimpleTimer.java
r43f2695 rd2f3a26 208 208 } else { 209 209 _occurredTime = now; 210 if (_occurredEventCount > 1000) {210 if (_occurredEventCount > 2500) { 211 211 StringBuffer buf = new StringBuffer(128); 212 212 buf.append("Too many simpleTimerJobs (").append(_occurredEventCount); 213 213 buf.append(") in a second!"); 214 _log.log(Log. CRIT, buf.toString());214 _log.log(Log.WARN, buf.toString()); 215 215 } 216 216 _occurredEventCount = 0; -
history.txt
r43f2695 rd2f3a26 1 2008-02-13 zzz 2 * Make graphs clickable to get larger graphs 3 * Change SimpleTimer CRIT to a WARN, increase threshold 4 * Checklist update 5 1 6 2008-02-10 zzz 2 7 * Add new tunnel build algorithm (preliminary) -
router/java/src/net/i2p/router/RouterVersion.java
r43f2695 rd2f3a26 18 18 public final static String ID = "$Revision: 1.548 $ $Date: 2008-02-10 15:00:00 $"; 19 19 public final static String VERSION = "0.6.1.31"; 20 public final static long BUILD = 1;20 public final static long BUILD = 2; 21 21 public static void main(String args[]) { 22 22 System.out.println("I2P Router version: " + VERSION + "-" + BUILD);
Note: See TracChangeset
for help on using the changeset viewer.