Changeset eb32e2e2
- Timestamp:
- Dec 14, 2011 12:20:17 AM (9 years ago)
- Branches:
- master
- Children:
- 6da32a1
- Parents:
- 27f0587 (diff), 6ce5e8b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
apps/routerconsole/jsp/help.jsp
r27f0587 reb32e2e2 50 50 The second number is the number of peers seen in the last hour or so. 51 51 Do not be concerned if these numbers vary widely. 52 First enable all stats to<a href="configstats.jsp#router.activePeers">[Enable graphing]</a>.</li>52 <a href="configstats.jsp#router.activePeers">[Enable graphing]</a>.</li> 53 53 <li class="tidylist"><b>Fast:</b> 54 54 This is the number of peers you use for building client tunnels. It is generally in the 55 55 range 8-30. Your fast peers are shown on the <a href="profiles.jsp">profiles page</a>. 56 <a href="configstats.jsp#router.fastPeers">[Enable graphing]</a> .</li>56 <a href="configstats.jsp#router.fastPeers">[Enable graphing]</a></li> 57 57 <li class="tidylist"><b>High Capacity:</b> 58 58 This is the number of peers you use for building some of your exploratory tunnels. It is generally in the 59 59 range 8-75. The fast peers are included in the high capacity tier. 60 60 Your high capacity peers are shown on the <a href="profiles.jsp">profiles page</a>. 61 First enable all stats to <a href="configstats.jsp#router.highCapacityPeers">[Enable graphing]</a>.</li>61 <a href="configstats.jsp#router.highCapacityPeers">[Enable graphing]</a></li> 62 62 <li class="tidylist"><b>Well Integrated:</b> 63 63 This is the number of peers you use for network database inquiries. -
apps/routerconsole/jsp/help_fr.jsp
r27f0587 reb32e2e2 44 44 8-10 à plusieurs centaines, selon votre bande passante et son rapport de partage, et le trafic généré localement. Le 45 45 second est celui des pairs vus dans les dernières heures. Ces nombres penvent varier sensiblement sans conséquence. 46 <a href="configstats.jsp#router.activePeers">[Activer le graphique]</a> (activer auparavant "toutes 47 les statistiques").</li> 46 <a href="configstats.jsp#router.activePeers">[Activer le graphique]</a></li> 48 47 <li class="tidylist"><b>Rapides:</b> 49 48 le nombre de pairs que vous mettez à contribution pour construire vos tunnels clients. En général dans une tranche de … … 54 53 Les pairs rapides font partie du groupe des "Hautes capacités". Vos pairs à hautes capacités sont aussi listés sur 55 54 la page <a href="profiles.jsp">profils</a>. 56 <a href="configstats.jsp#router.highCapacityPeers">[Activer le graphique]</a> (activer auparavant "toutes les 57 statistiques").</li> 55 <a href="configstats.jsp#router.highCapacityPeers">[Activer le graphique]</a></li> 58 56 <li class="tidylist"><b>Bien intégrés:</b> 59 57 vous utilisez ce groupe pour vos requêtes à la base de données du réseau. Ils sont souvent des pairs de remplissage par -
history.txt
r27f0587 reb32e2e2 1 2011-12-13 kytv 2 * Don't require that full stats are enabled to be able to graph 3 router.highCapacityPeers. (closes #450) 4 1 5 2011-12-12 kytv 2 6 * German and Spanish translation updates from Transifex -
router/java/src/net/i2p/router/tasks/CoalesceStatsEvent.java
r27f0587 reb32e2e2 36 36 ctx.statManager().createRequiredRateStat("bw.recvRate", _x("Low-level receive rate (bytes/sec)"), "Bandwidth", new long[] { 60*1000l, 5*60*1000l, 10*60*1000l, 60*60*1000l }); 37 37 ctx.statManager().createRequiredRateStat("router.activePeers", _x("How many peers we are actively talking with"), "Throttle", new long[] { 60*1000, 5*60*1000, 60*60*1000 }); 38 ctx.statManager().createRequiredRateStat("router.highCapacityPeers", "How many high capacity peers we know", "Throttle", new long[] { 5*60*1000, 60*60*1000 }); 38 39 ctx.statManager().createRateStat("router.activeSendPeers", "How many peers we've sent to this minute", "Throttle", new long[] { 60*1000, 5*60*1000, 60*60*1000 }); 39 ctx.statManager().createRateStat("router.highCapacityPeers", "How many high capacity peers we know", "Throttle", new long[] { 5*60*1000, 60*60*1000 });40 40 ctx.statManager().createRequiredRateStat("router.fastPeers", _x("Known fast peers"), "Throttle", new long[] { 5*60*1000, 60*60*1000 }); 41 41 _maxMemory = Runtime.getRuntime().maxMemory();
Note: See TracChangeset
for help on using the changeset viewer.