Author |
Message
|
tct592 |
Posted: Tue Oct 26, 2004 9:35 am Post subject: Monitoring queues |
|
|
Newbie
Joined: 18 Aug 2004 Posts: 5
|
Does anyone know of a good java API that can be used to monitor queues. We currently have an application that drops a request to a queue. An application picks this request up and distributes to different queues we want to monitor the queues to see what is happening to our request.
Any help is greatly appreciated. |
|
Back to top |
|
 |
jefflowrey |
Posted: Tue Oct 26, 2004 9:40 am Post subject: |
|
|
Grand Poobah
Joined: 16 Oct 2002 Posts: 19981
|
What aspects of the queues or messages are you trying to monitor? _________________ I am *not* the model of the modern major general. |
|
Back to top |
|
 |
tct592 |
Posted: Tue Oct 26, 2004 10:09 am Post subject: Monitoring tools |
|
|
Newbie
Joined: 18 Aug 2004 Posts: 5
|
I am trying to monitor all messages on the queue. When trying to browse the queues, I am finding that the messages are removed faster than I can browse the queue.
In a nutshell we are sending a request which generates multiple requests. I want to make sure that all requests are successful. I am responsible for finding any bottlenecks in the request process. E.G. that every request has been successfully send and received. |
|
Back to top |
|
 |
jefflowrey |
Posted: Tue Oct 26, 2004 10:32 am Post subject: |
|
|
Grand Poobah
Joined: 16 Oct 2002 Posts: 19981
|
There isn't an API for the kind of monitoring you're looking to do.
You could write an API Exit that would track your messages. But not in Java.
You are better off using the Report options to generate COA or COD reports.
Or, you know, making sure that all of your applications are properly logging every message they send and receive. So that you don't have to do extra work to find out basic business information. Of course, if you are making requests to external parties, that gets a little harder... and then COA/COD can be useful. _________________ I am *not* the model of the modern major general. |
|
Back to top |
|
 |
tct592 |
Posted: Tue Oct 26, 2004 11:43 am Post subject: |
|
|
Newbie
Joined: 18 Aug 2004 Posts: 5
|
Thanks for the quick reply.
Another question?
Where are the report options and what are COA and COD?
Currently we have a very scaled down version of the client which is just the java APIs to connect with using navtive or jms classes.
I am guessing that COA and COD come out of the full client. One more question as well, if there are queues that talk to queues (no client connections) are we able to get this information as well?
Thanks again. |
|
Back to top |
|
 |
|