InFlightCount: The number of messages that have been dispatched and are currently awaiting acknowledgment from the consumer. So as this number decreases, the DequeueCount increases.
AverageEnqueueTime: On average, the amount of time (ms) that messages remained enqueued. Or average time it is taking the consumers to successfully process messages.
EnqueueCount: The number of messages that have been written to the queue over the lifetime of the queue.
DequeueCount: The number of messages that have been successfully (i.e., they’ve been acknowledged from the consumer) read off the queue over the lifetime of the queue.
DispatchCount: The number of messages that have been dispatched (sent) to the consumer over the lifetime of the queue. Note that dispatched messages may not have all been acknowledged.
本文介绍了消息队列中几个核心指标的意义及作用:InFlightCount代表已分发待确认的消息数;AverageEnqueueTime为消息平均驻留时间;EnqueueCount记录总入队消息数;DequeueCount记录总成功出队消息数;DispatchCount记录总分发消息数。通过这些指标可以监控消息队列的工作状态。
2994

被折叠的 条评论
为什么被折叠?



