Parameter Name | Description |
Broker Node | Broker server on which a queue is stored. It is used to locate physical resources. A node can be located quickly for troubleshooting when a problem occurs. |
Queue No. | Unique identifier of a queue. A topic contains multiple queues, numbered starting from 0, which are units for load balancing and parallel message sending/receiving. |
Maximum Offset | Storage position of the latest message in the queue, representing the latest writing progress of the message. |
Minimum Offset | Storage position of the oldest message in the queue. As expired messages are cleared, the storage position moves forward. |
Message Quantity | Total number of backlogged messages in the queue. Number of messages = Maximum offset - Minimum offset. |
Last Message Write Time | Timestamp when the last message is written to a queue successfully. It reflects the activity level of the queue. A significant gap between this timestamp and the current time indicates that no new message has been transferred to the queue recently. |
Feedback