Author |
Message
|
claire |
Posted: Tue Jul 16, 2002 3:50 am Post subject: How to know the number of active MQ java client connections? |
|
|
Apprentice
Joined: 10 Apr 2002 Posts: 32
|
Hi,
I want to know how many MQ java clients are connected to my queue manager through MQI channel or native binding, how to do it?
Thanks a lot. |
|
Back to top |
|
 |
nimconsult |
Posted: Tue Jul 16, 2002 10:39 pm Post subject: |
|
|
 Master
Joined: 22 May 2002 Posts: 268 Location: NIMCONSULT - Belgium
|
Well for MQ Series clients, open the server connection channels using MQ Series explorer, you will see the list of active connections.
For binding mode I don't know, I am going to "watch this topic for replies" as well! _________________ Nicolas Maréchal
Senior Architect - Partner
NIMCONSULT Software Architecture Services (Belgium)
http://www.nimconsult.be |
|
Back to top |
|
 |
mrlinux |
Posted: Wed Jul 17, 2002 3:37 am Post subject: |
|
|
 Grand Master
Joined: 14 Feb 2002 Posts: 1261 Location: Detroit,MI USA
|
Well as far as binding mode you could use a script to sum up all the
OPPROCS and IPPROCS from the application queues.
runqmsc
dis ql(*) IPPROCS OPPROCS _________________ Jeff
IBM Certified Developer MQSeries
IBM Certified Specialist MQSeries
IBM Certified Solutions Expert MQSeries |
|
Back to top |
|
 |
nimconsult |
Posted: Wed Jul 17, 2002 4:22 am Post subject: |
|
|
 Master
Joined: 22 May 2002 Posts: 268 Location: NIMCONSULT - Belgium
|
IPPROCS and OPPROCS give the number of open handles, not the number of open connections (one connection can open zero or more handles). _________________ Nicolas Maréchal
Senior Architect - Partner
NIMCONSULT Software Architecture Services (Belgium)
http://www.nimconsult.be |
|
Back to top |
|
 |
mrlinux |
Posted: Wed Jul 17, 2002 5:34 am Post subject: |
|
|
 Grand Master
Joined: 14 Feb 2002 Posts: 1261 Location: Detroit,MI USA
|
you are right about that, but if you know your application opens up one
queue for input and one for output, you can still use this method you just have to adjust the numbers based on applications queue handle count. _________________ Jeff
IBM Certified Developer MQSeries
IBM Certified Specialist MQSeries
IBM Certified Solutions Expert MQSeries |
|
Back to top |
|
 |
|