String name = entry.getKey();
MapService mapService = entry.getValue();
restBody += "<li>";
restBody += " <b>" + name + "</b>";
if (mapService.isStarted()) {
MapServicePool pool = mapService.getMapServicePool();
restBody += " Running("
+ pool.getWorkingInstanceCount() + ")";
restBody += " Totle("
+ (pool.getWorkingInstanceCount() + pool
.getIdleInstanceCount()) + ")";
restBody += " Max(" + pool.getMaxInstances()
+ ")";
restBody += " [<a href='" + thisURI
+ "stop?service=map>" + name + "'>Stop</a>]";
restBody += " [<a href='" + thisURI
+ "reload?service=map>" + name
+ "'>Reload</a>]";
long startupSeconds = pool.getStartupTime() / 1000;
long s = startupSeconds;
long m = 0;
long h = 0;
long d = 0;
if (s >= 60) {