This article shows how to retrieve event data for a specific ActiveMQ producer using the REST API.
Search ActiveMQ Producer Events
GET /activemq/producers/{nodeName}/{managerName}/{brokerName}/{producerName}/events
Retrieves event details associated with a specific ActiveMQ Producer Events .
Example Request
curl -X 'GET' \ 'http://<hostname>:8019/rest/v1/activemq/producers/CMACTIVEMQ/Cloudactmq/JKMessageBus/ID%3AVinay-PC-58417-1760097357526-13%3A1%3A1%3A2/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.
[
{
"wgsName": "MQM",
"type": "Alter",
"eventNo": 462
}
]