git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@788352 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Timothy A. Bish 2009-06-25 13:29:20 +00:00
parent 3d77a2f90c
commit 74bcc2ec4a
2 changed files with 41 additions and 4 deletions

View File

@ -6,9 +6,9 @@
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@ -35,7 +35,7 @@
</head>
<body>
<div class="white_box">
<div class="header">
@ -105,6 +105,14 @@
<li><a href="queueGraph.jsp" title="View the queue depths as a graph">Graph</a></li>
<li><a href="xml/queues.jsp" title="View the queues as XML">XML</a></li>
</ul>
<H3>Topic Views</H3>
<ul class="alternate" type="square">
<li><a href="xml/topics.jsp" title="View the topics as XML">XML</a></li>
</ul>
<H3>Useful Links</H3>
<ul class="alternate" type="square">
@ -148,4 +156,4 @@
</body>
</html>

View File

@ -0,0 +1,29 @@
<%@ page contentType="text/xml;charset=ISO-8859-1"%>
<%--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
--%>
<topics>
<c:forEach items="${requestContext.brokerQuery.topics}" var="row">
<topic name="${row.name}">
<stats size="${row.queueSize}"
consumerCount="${row.consumerCount}"
enqueueCount="${row.enqueueCount}"
dequeueCount="${row.dequeueCount}"/>
</topic>
</c:forEach>
</topics>