使用Spring和启用的Prometheus配置来监控RabbitMQ消息统计信息,但始终将消息计数显示为零,即使有消息在队列中或已被使用。在适当监视其他jvm或cpu使用率的情况下,是否需要任何配置来读取消息。 http://localhost:8080/actuator/prometheus HELP rabbitmq_rejected_total
# TYPE rabbitmq_rejected_total counter
rabbitmq_rejected_total{name="rabbit",} 0.0
# HELP rabbitmq_published_
我们一直有来自RabbitMQ的以下问题,并且每个周末都会手动重新启动服务器,作为一项工作。
Network partition detected
Mnesia reports that this RabbitMQ cluster has experienced a network partition. This is a dangerous situation. RabbitMQ clusters should not be installed on networks which can experience partitions.
我们已经浏览了其他关于这个主题的热门文章,例如和
我们的网
我将感谢您对此的想法。
Node app 1 sends data to a RabbitMQ queue. The data contains a unique ID.
Node app 2 requests data with a specific ID from the RabbitMQ queue.
如您所见,我需要能够从队列中选择特定的消息,而不仅仅是下一条可用消息。
这个是可能的吗?我该怎么做呢?
谢谢。