This article shows how to search ActiveMQ Dynamic Producer Events using the REST API.
Search ActiveMQ Dynamic Producer Events
GET /activemq/dynamic-producers/{nodeName}/{managerName}/{brokerName}/{dynamicProducerName}/events
Retrieves event details associated with a specific ActiveMQ Dynamic Producer Events .
Example Request
curl -X 'GET' \ 'http://<hostname>:8019/rest/v1/activemq/dynamic-producers/CMACTIVEMQ/Cloudactmq/JKMessageBus/ID%3Ameshiq-activemq-774f488ddc-411cf-38593-1759994796685-4%3A3%3A1%3A1/events' \
-H 'accept: application/json' \ -H 'Authorization: Basic QWRtaW46YWRtaW4='
Query Parameters
| Parameter | Type | Description |
|---|---|---|
eventType | string | Event type. Possible values: None, All, Manager, Alter, QMgr, Channel, Performance, Config, Command, Schedule, Bridge, Logger. |
timestamp | integer | Event timestamp (Unix epoch). |
limit | integer | Limit of returned objects. |
attributes | string | Comma-separated list of attributes or sections to retrieve. |
validateAccessForUser | string | Validate endpoint access for user. |
Response Codes
200 OK – Events retrieved successfully.
* – Returns
ErrorPojoif request fails.
Example Response
200 OK – Events retrieved successfully.
[
{
"vgsName": "MQM",
"type": "Alter",
"eventNo": 508
},
{
"vgsName": "MQM",
"type": "Alter",
"eventNo": 506
}
]