MQWeb
Administrating WebSphere MQ with your browser.
ListenerStatusController
The second part of the URI must be lsstatus
to call the
ListenerStatusController.
inquire
Get status information about one ore more listeners. This actions executes the
PCF commando MQCMD_INQUIRE_LISTENER_STATUS. On success, the returned JSON
object will have a data
array, on failure an error
object.
URL Parameters
/api/lsstatus/inquire/<QueueManager>/<ListenerName>
Queuemanager
The name of the queuemanager. This parameter is required.
ListenerName
The name of the listener. When this parameter is used, the query parameter for listername will be ignored. A generic name can be used.
Query Parameters
ExcludeSystem
When value is true
, the status of system listeners are not returned. By
default this parameter is false
. This parameter is optional.
Filter
Speficies which filter to use: I
means Integerfilter, S
means Stringfilter.
FilterParam and FilterValue are required to create the filter. When a filter can’t be build
because of too little information, it will be silently discarded.
FilterOp
The operator that is being used to evaluate whether the parameter satisfies the filter-value.
The default is EQ
.
The following values are allowed:
GT
: Greater thanLT
: Less thanEQ
: Equal toNE
: Not equal toNLT
: Not less thanNGT
: Not greater thanLE
: Less than or equal toGE
: Greater than or equal toCT
: ContainsEX
: Excludes
A Stringfilter can use some additional operators:
LK
: Matches a generic stringNL
: Does not match a generic stringCTG
: Contains an item which matches a generic stringEXG
: Does not contain any item which matches a generic string.
FilterParam
The name of the parameter to filter on. The names are based on the names used in the WebSphere MQ information center.
FilterValue
The value to use for filtering. When a string is passed for an Integerfilter, a WebSphere MQ constant is assumed.
ListenerName
The name of the listener. It is ignored when a URL parameter is used. Generic names are allowed.
ListenerStatusAttrs
With the ListenerStatusAttrs parameter you can specify which attributes must be returned from the PCF command. Multiple occurences of this parameter are possible. The value must be a (case-sensitive) valid attribute name.
Attrs is a synonym for ListenerStatusAttrs
Example
/api/lsstatus/inquire/PIGEON
/api/lsstatus/inquire/PIGEON?ListenerName=MQWEB*
JSON Object
When using an application/json POST request you can post a JSON object with names like the query parameters.
All URL parameters and query parameters are ignored except for the URL parameter for the name of the queuemanager.
There are some differences between query parameters and a JSON object:
- JSON property names are case-sensitive
- ListenerStatusAttrs is a JSON array with attributenames as element.
- A filter is an object: IntegerFilterCommand can be used to filter on parameters which has integer values, while StringFilterCommand can be used to filter on parameters with string values. The filter object has these three properties: Parameter (see FilterParam), Operator (see FilterOp) and FilterValue (see FilterValue).
An IntegerFilterCommand can’t be used together with a StringFilterCommand
This is a Perl example that inquires all statuses.