This release of JBoss EAP 6 carries a bug that prevent the Admin Console from displaying the correct number of JMS destinations. The figure is always displayed as `0`.
This issue is expected to be resolved in a future release of the product.
DescriptionTyronne Wickramarathne
2014-01-13 04:22:15 UTC
Description of problem:
JBoss-EAP-6.2 does not show message count for JMS destinations on the admin console.
Version-Release number of selected component (if applicable):
JBoss-EAP-6.2
HornetQ-2.3.12
How reproducible:
Always
Steps to Reproduce:
1. Create a JMS destination using admin console, CLI or directly on the standalone configuration file
<jms-destinations>
<jms-queue name="M">
<entry name="java:/jboss/exported/queue/M"/>
<durable>true</durable>
</jms-queue>
</jms-destinations>
2. Send 1 or more messages using a JMS client to the newly configured destination
3. Open the admin console and check the message count for the said destination, queue/M
http://localhost:9990/console/App.html#jms-metrics
Actual results:
The admin console does not show message count. It shows '0' as the message count
Expected results:
Admin console should display the actual message count
Additional info:
You could verify the actual message count via CLI as a workaround since it shows the message count correctly :
[standalone@localhost:9999 /] /subsystem=messaging/hornetq-server=default/jms-queue=M:count-messages()
{
"outcome" => "success",
"result" => 10L
}
Hi Tyronne,
I think this bug is in admin console. I observed both cli and console invoke the getMessageCount() method, however the cli correctly printed it but the console doesn't.
I need to find the AS 7.2.0 source to debug. I downloaded the src zip but I got build failure. Do you know where to get the correct source code?
Thanks
Howard
Comment 28Rostislav Svoboda
2014-10-14 12:59:46 UTC
We (QE) think issues described in the BZ was properly fixed in EAP 6.3 1.CP.CR1.
There are many customer cases linked to this BZ. I think in some of these there are different problems than what is the scope of this BZ - for example https://access.redhat.com/support/cases/01212225/
- runtime destinations for topic (tab "subscriptions") doesn't show details per subscriber, only general information about number of consumers and messages
Please file new BZ for additional requests from customer tickets.
Comment 32Red Hat Bugzilla
2023-09-14 01:56:58 UTC
The needinfo request[s] on this closed bug have been removed as they have been unresolved for 1000 days
Description of problem: JBoss-EAP-6.2 does not show message count for JMS destinations on the admin console. Version-Release number of selected component (if applicable): JBoss-EAP-6.2 HornetQ-2.3.12 How reproducible: Always Steps to Reproduce: 1. Create a JMS destination using admin console, CLI or directly on the standalone configuration file <jms-destinations> <jms-queue name="M"> <entry name="java:/jboss/exported/queue/M"/> <durable>true</durable> </jms-queue> </jms-destinations> 2. Send 1 or more messages using a JMS client to the newly configured destination 3. Open the admin console and check the message count for the said destination, queue/M http://localhost:9990/console/App.html#jms-metrics Actual results: The admin console does not show message count. It shows '0' as the message count Expected results: Admin console should display the actual message count Additional info: You could verify the actual message count via CLI as a workaround since it shows the message count correctly : [standalone@localhost:9999 /] /subsystem=messaging/hornetq-server=default/jms-queue=M:count-messages() { "outcome" => "success", "result" => 10L }