Author: boday Date: Tue Apr 17 03:38:52 2012 New Revision: 1326900 URL: http://svn.apache.org/viewvc?rev=1326900&view=rev Log: CAMEL-4471 added load average stats to routes list page
Modified: camel/trunk/components/camel-web/src/main/webapp/WEB-INF/org/apache/camel/web/resources/RoutesResource.index.ssp Modified: camel/trunk/components/camel-web/src/main/webapp/WEB-INF/org/apache/camel/web/resources/RoutesResource.index.ssp URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-web/src/main/webapp/WEB-INF/org/apache/camel/web/resources/RoutesResource.index.ssp?rev=1326900&r1=1326899&r2=1326900&view=diff ============================================================================== --- camel/trunk/components/camel-web/src/main/webapp/WEB-INF/org/apache/camel/web/resources/RoutesResource.index.ssp (original) +++ camel/trunk/components/camel-web/src/main/webapp/WEB-INF/org/apache/camel/web/resources/RoutesResource.index.ssp Tue Apr 17 03:38:52 2012 @@ -26,9 +26,10 @@ <th>Route</th> <th colspan="2">Status</th> <th>Remove</th> - <th>Exchanges (Completed/Failed/Inflight)</th> - <th>Processing Time (Min/Max/Mean)</th> - <th>Message Time (First/Last)</th> + <th>Exchanges<br/>(Completed / Failed / Inflight)</th> + <th>Processing Time<br/>(Min / Max / Mean)</th> + <th>Message Time<br/>(First / Last)</th> + <th>Load Average<br/>(1 min / 5 min / 15 min)</th> </tr> <ul> #for(i <- it.getRoutes) @@ -68,6 +69,9 @@ <td> ${i.getStatistic("FirstExchangeCompletedTimestamp")} / ${i.getStatistic("LastExchangeCompletedTimestamp")} </td> + <td> + ${i.getStatistic("Load01")} / ${i.getStatistic("Load05")} / ${i.getStatistic("Load15")} + </td> </tr> #end </ul>