StatisticsTracker stats = getStats();
if (stats == null) {
return null;
}
CrawlStatSnapshot snapshot = stats.getSnapshot();
Map<String,Number> map = new LinkedHashMap<String,Number>();
map.put("currentDocsPerSecond", snapshot.currentDocsPerSecond);
map.put("averageDocsPerSecond", snapshot.docsPerSecond);
map.put("currentKiBPerSec", snapshot.currentKiBPerSec);
map.put("averageKiBPerSec", snapshot.totalKiBPerSec);