Questions tagged [rabbitmq-management]

This tag is for questions specific to RabbitMQ's management tool and HTTP API.

25 questions
1
vote
0 answers

RabbitMQ API returning incorrect queue statistics

I'm working with RabbitMQ instances hosted at CloudAMQP. I'm calling the management API to get detailed queue statistics. About 1 in 10 calls to the API return invalid numbers. The endpoint is…
Matt S
  • 14,976
  • 6
  • 57
  • 76
0
votes
0 answers

Queues in RabbitMQ Management are not displayed

I am stuck with the following problem: I am trying to use .Net 6/C# with RabbitMQ by using RabbitMQ.Client library. I use docker to get the container of RabbitMQ. The following command is applied: docker run -d --hostname my-rabbit --name…
TeaLocust
  • 31
  • 2
0
votes
1 answer

In rabbitMQ management console, under connection section, what does the ip and port mean in connection name?

I have this rabbitMQ docker container running: version: '3' services: rabbitmq: image: rabbitmq:3-management-alpine environment: - RABBITMQ_DEFAULT_USER=guest - RABBITMQ_DEFAULT_PASS=guest ports: - 5672:5672 …
Kid_Learning_C
  • 2,605
  • 4
  • 39
  • 71
0
votes
0 answers

How to find out complete details of a published/consumed message from rabbitmq management console?

I created a new exchange and a queue from rabbitmq management console, did the bindings and finally published a message from the exchange to the queue. Without making any connections from the code making senders or listners I want to find out the…
Khwaish T
  • 11
  • 2
0
votes
0 answers

My Rabbit Menagement with operator has no 'ready, Unacknowledged, total' information, how can i add them?

I use these data for my work, but I didn't find them (look at the pictures). could someone help me to display them? rabbitmq-management pic rabbitmq-management k8s pic k8s version pic version rabbitmq Official Website rabbitmq Official…
0
votes
1 answer

Expose rabbitmq managment via kubernetes ingrress

I have a kubernetes cluster with a deployment of rabbitmq. I want to expose the rabbitmanagment UI in that way I can access to it in my browser. To do that I have a deployment, service and ingress file: apiVersion: apps/v1 kind:…
0
votes
1 answer

rabbitmq - detecting "idle" queue

I'm looking for a correct way to know when queues are idle. "idle" = no messages were published for a predefined amount of time. How can I use the /api/queues (or other API) for that?
user3599803
  • 6,435
  • 17
  • 69
  • 130
0
votes
1 answer

Is it possible to configure cipher suites used by RabbitMQ Management Plugin?

I have an instance of RabbitMQ 3.7.7-management image running. It has the rabbitmq-management plugin enabled and configured to use HTTPS as per the documentation: management.listener.port = 15671 management.listener.ssl =…
Boris
  • 22,667
  • 16
  • 50
  • 71
0
votes
1 answer

why is rabbitmq management plugin reports discrepancy in statistics?

I am using rabbitmq server along with celery. I have a queue, to which tasks are published by producers. Tasks are auto-acknowledged. But I am seeing discrepancy in what rabbitmq is reporting. In the Message rates, it's showing that there's no…
Mangu Singh Rajpurohit
  • 10,806
  • 4
  • 68
  • 97
0
votes
1 answer

How to get notified when new/old RabbitMQ queue declared/destroyed

In our solution thousands of queues might be declared by clients (we actually have one queue per IoT device in our system). I want to get notified each time when a new queue declared (IoT device connected) or some existing queue destroyed (IoT…
ie.
  • 5,982
  • 1
  • 29
  • 44
1
2