Using metrics with a cluster of brokers.
Hello,
Here is my situation -
I'm using the metric topic "mq.metrics.destination_list" to receive the mapped message of metric data. I'm doing this to get the queue depth, number of consumers and number of messages acknowledge. My JMS provider is Sun JMS. I have a cluster of two brokers on Window Servers. I set the address list of brokers accordingly as shown.
connectFactory = new com.sun.messaging.ConnectionFactory();
connectFactory.setProperty("imqAddressList", addressList());
The problem is the metric data only contains data on the first broker in my list. I would assume since they are clustered I should get the combination of all the brokers in the cluster. Is this possible and if so what am I missing?
PS: I know I could poll each broker and manually combine the data but I prefer not to.
Thanks

