Filter queue overview in ActiveMQ -
is there way filter visible queues within activemq queue overview? have lot of different queues , overview page full. great filter away not important queues default.
if you're talking web admin console configuration, no - it's not built scale lot of queues.
but again, console simple java web app , implement filter if need it.
the quick n dirty way can think of open webapps/admin/queues.jsp
, add jsp-if statement in foreach-loop. hard coded, quick , not require server restart, simple browser reload.
<c:foreach items="${requestcontext.brokerquery.queues}" var="row"> <!-- show queues starting important. --> <c:if test="${fn:startswith(row.name,'important.')}"> .. </c:if> </c:foreach>
there are, of course, more sophisticated , better ways achieve if you're task.
Comments
Post a Comment