Author |
Message
|
JosephGramig |
Posted: Wed Dec 02, 2020 6:21 am Post subject: PUB/SUB Qmgr event topics $SYS/MQ |
|
|
 Grand Master
Joined: 09 Feb 2006 Posts: 1218 Location: Derby City, USA
|
At this URL, there is a small sample of the topic strings. I have searched the KC and have not found a full listing with at least a short description.
Is there a list of the topic strings? |
|
Back to top |
|
 |
fjb_saper |
Posted: Wed Dec 02, 2020 6:51 am Post subject: |
|
|
 Grand High Poobah
Joined: 18 Nov 2003 Posts: 20436 Location: LI,NY
|
There cannot be an exhaustive list of topic strings because they are dynamic by nature.
However looking at amqsrua there is a specific discovery topic. (Don't remember look it up in the config...)
For each level it will give you the next level topics.
For each individual end leaf topic it will give you the unit of measure for the numbers provided...
For the rest of the SYS topics they are described in the corresponding sections of the infocenter. You can also look at TPSTATUS...
try
Code: |
dis tpstatus('$SYS/MQ/INFO/#') type(topic) |
 _________________ MQ & Broker admin |
|
Back to top |
|
 |
JosephGramig |
Posted: Wed Dec 02, 2020 8:13 am Post subject: |
|
|
 Grand Master
Joined: 09 Feb 2006 Posts: 1218 Location: Derby City, USA
|
@fjb_saper,
If you look at their example, the dynamic parts are in italics. So, I was hoping for a list of the parts that are not dynamic (with indications of the parts that are dynamic). |
|
Back to top |
|
 |
markt |
Posted: Wed Dec 02, 2020 9:02 am Post subject: |
|
|
 Chevalier
Joined: 14 May 2002 Posts: 451
|
For the resource metrics, the only "guaranteed" topic is at
Code: |
$SYS/MQ/INFO/QMGR/<qmgr>/Monitor/METADATA/CLASSES |
(actually there's that one plus language-keyed variants like .../CLASSES/Fr_FR that give the descriptions as translated text)
Everything from there on is meant to be dynamically discovered via the metadata. Which is what you can see amqsrua doing. If you run it with the "-d 1" option you get to see the individual topics. |
|
Back to top |
|
 |
|