@ -218,7 +218,7 @@ public final class Switchboard extends serverSwitch {
publiclongindexedPages=0;
publicintsearchQueriesRobinsonFromLocal=0;// absolute counter of all local queries submitted on this peer from a local or autheticated used
publicintsearchQueriesRobinsonFromRemote=0;// absolute counter of all local queries submitted on this peer from a remote IP without authentication
publicdouble searchQueriesGlobal=0d;// partial counter of remote queries (1/number-of-requested-peers)
publicfloat searchQueriesGlobal=0f;// partial counter of remote queries (1/number-of-requested-peers)
publicSortedMap<byte[],String>clusterhashes;// map of peerhash(String)/alternative-local-address as ip:port or only ip (String) or null if address in seed should be used
peers.mySeed().put(yacySeed.UPTIME,Long.toString(uptime/60));// the number of minutes that the peer is up in minutes/day (moving average MA30)
peers.mySeed().put(yacySeed.LCOUNT,Long.toString(indexSegments.URLCount()));// the number of links that the peer has stored (LURL's)
peers.mySeed().put(yacySeed.NCOUNT,Integer.toString(crawlQueues.noticeURL.size()));// the number of links that the peer has noticed, but not loaded (NURL's)
peers.mySeed().put(yacySeed.RCOUNT,Integer.toString(crawlQueues.noticeURL.stackSize(NoticedURL.StackType.LIMIT)));// the number of links that the peer provides for remote crawling (ZURL's)
peers.mySeed().put(yacySeed.ICOUNT,Long.toString(indexSegments.RWICount()));// the minimum number of words that the peer has indexed (as it says)
peers.mySeed().put(yacySeed.SCOUNT,Integer.toString(peers.sizeConnected()));// the number of seeds that the peer has stored
peers.mySeed().put(yacySeed.CCOUNT,Double.toString(((int)((peers.sizeConnected()+peers.sizeDisconnected()+peers.sizePotential())*60.0/(uptime+1.01))*100)/100.0));// the number of clients that the peer connects (as connects/hour)
peers.mySeed().put(yacySeed.CCOUNT,Float.toString(((int)((peers.sizeConnected()+peers.sizeDisconnected()+peers.sizePotential())*60.0f/(uptime+1.01f))*100.0f)/100.0f));// the number of clients that the peer connects (as connects/hour)