Author |
Message
|
PeterPotkay |
Posted: Fri Jan 28, 2005 5:17 am Post subject: How many flows / sets are running? |
|
|
 Poobah
Joined: 15 May 2001 Posts: 7722
|
To have management better understand how much we do and show that the work continues to increase, I would like to track the total #s of flows and sets deployed to Production.
Is there any file somewhere that contains this #? I don't want to have to open the ToolKit and count every month. _________________ Peter Potkay
Keep Calm and MQ On |
|
Back to top |
|
 |
Tibor |
Posted: Fri Jan 28, 2005 6:01 am Post subject: |
|
|
 Grand Master
Joined: 20 May 2001 Posts: 1033 Location: Hungary
|
Peter,
You can run a query on brokerresources table. But not so smart
Tibor |
|
Back to top |
|
 |
mqmhr |
Posted: Fri Jan 28, 2005 6:17 am Post subject: |
|
|
Centurion
Joined: 28 Dec 2004 Posts: 105
|
You could use the command mqsireportflowstats <BrokerName> -s -g -j and redirect the output to a file. One line is reported for each message flow in each execution group. This is a rather crude way of finding out the number of message flows but it is effective. |
|
Back to top |
|
 |
nathanw |
Posted: Fri Jan 28, 2005 7:33 am Post subject: |
|
|
 Knight
Joined: 14 Jul 2004 Posts: 550
|
If you could open yur bar file that should tell you what has been deployed etc
or do you actually want to see what has run
of course opening the bar file may be impossible so maybe that idea wont work
but there must be a way of finding out what is where etc |
|
Back to top |
|
 |
jwende |
Posted: Fri Jan 28, 2005 9:51 am Post subject: |
|
|
 Novice
Joined: 02 Jul 2001 Posts: 23
|
mqsilist
gives you the list installed brokers
mqsilist <Broker_name>
gives you the list of executiongroups for a certain broker
mqsilist <Broker_name> -e <Execution_Group_Name>
gives you a list of flows for a certain execution group
I'm not a script expert - but it may possible to combine all three commands into one script to produce a nice listing. |
|
Back to top |
|
 |
kirani |
Posted: Sat Jan 29, 2005 3:14 pm Post subject: |
|
|
Jedi Knight
Joined: 05 Sep 2001 Posts: 3779 Location: Torrance, CA, USA
|
I don't there is any command to list message sets though. _________________ Kiran
IBM Cert. Solution Designer & System Administrator - WBIMB V5
IBM Cert. Solutions Expert - WMQI
IBM Cert. Specialist - WMQI, MQSeries
IBM Cert. Developer - MQSeries
|
|
Back to top |
|
 |
jwende |
Posted: Mon Jan 31, 2005 1:14 am Post subject: |
|
|
 Novice
Joined: 02 Jul 2001 Posts: 23
|
you can try is one:
mqsireportproperties WBRK_BROKER -e test -o ComIbmMtiParserFactory -r
It gives you some information about the parser itself but it lists also the messageset id of the deployed messagesets:
MessageFormat
uuid='JL7OAHK002001' |
|
Back to top |
|
 |
|