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

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

StatisticsManager: Publish dummy LS count if we just started

parent 80a2d2c1
No related branches found
No related tags found
No related merge requests found
......@@ -151,8 +151,11 @@ public class StatisticsManager implements Service {
// So that we will still get build requests
stats.setProperty("stat_uptime", "90m");
if (FloodfillNetworkDatabaseFacade.isFloodfill(_context.router().getRouterInfo())) {
stats.setProperty("netdb.knownRouters", ""+_context.netDb().getKnownRouters());
stats.setProperty("netdb.knownLeaseSets", ""+_context.netDb().getKnownLeaseSets());
stats.setProperty("netdb.knownRouters", String.valueOf(_context.netDb().getKnownRouters()));
int ls = _context.router().getUptime() > 30*60*1000 ?
_context.netDb().getKnownLeaseSets() :
30 + _context.random().nextInt(40); // so it isn't obvious we restarted
stats.setProperty("netdb.knownLeaseSets", String.valueOf(ls));
}
return stats;
......
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