out.write("</td>");
RunningStatistics allTimeNanosec = entry.getValue().getAllTimeNanosec();
pageContext.setAttribute("averageMicroSec", (long) (allTimeNanosec.getAverage() / 1000.0));
pageContext.setAttribute("maxMicroSec", (long) (allTimeNanosec.getMax() / 1000.0));
RunningStatisticsPerTime lastHourNanosec = entry.getValue().getLastHourNanosec();
pageContext.setAttribute("averageLastHourMicroSec", (long) (lastHourNanosec.getMean() / 1000.0));
pageContext.setAttribute("maxLastHourMicroSec", (long) (lastHourNanosec.getMax() / 1000.0));
pageContext.setAttribute("clientErrors", entry.getValue().getNumClientErrors());
pageContext.setAttribute("serverErrors", entry.getValue().getNumServerErrors());
out.write("<td>");
out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${entry.value.allTimeNanosec.count}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null, false));