how to show/measure depth and threshold of a tibco queue/topics in java, spring boot

470 Views Asked by At

I want to show eit tibco jms queue depth and threshold in java. Is anyone has sample example of how to show queue depth and threshold.

Thanks.

1

There are 1 best solutions below

2
On

You have to include tibjmsadmin.jar in your build path and then you can do this:

 TibjmsAdmin admin = new TibjmsAdmin(server, user, password);
 int numMsgs = admin.getQueues("Q1")[0].getPendingMessageCount();

Not sure what you mean by 'threshold' but maybe try getMaxMsgs()