[Bug 391345] fix missing br tag in statistics servlet

This commit is contained in:
Jesse McConnell 2013-01-29 14:55:22 -06:00
parent ddce31a323
commit 1910fb8ce4
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ public class StatisticsServlet extends HttpServlet
{
sb.append("Statistics gathering started ").append(connector.getStatsOnMs()).append("ms ago").append("<br />\n");
sb.append("Total connections: ").append(connector.getConnections()).append("<br />\n");
sb.append("Current connections open: ").append(connector.getConnectionsOpen());
sb.append("Current connections open: ").append(connector.getConnectionsOpen()).append("<br />\n");
sb.append("Max concurrent connections open: ").append(connector.getConnectionsOpenMax()).append("<br />\n");
sb.append("Total connections duration: ").append(connector.getConnectionsDurationTotal()).append("<br />\n");
sb.append("Mean connection duration: ").append(connector.getConnectionsDurationMean()).append("<br />\n");