Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions etc/kayobe/kolla/config/prometheus/rabbitmq.rules
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,6 @@ groups:
severity: warning
annotations:
description: RabbitMQ file descriptors usage on {{ $labels.instance }}
- alert: RabbitMQTooMuchReady
expr: rabbitmq_queue_messages_ready > 100
for: 1m
labels:
severity: warning
annotations:
description: RabbitMQ too much ready on {{ $labels.instance }}
- alert: RabbitMQTooMuchUnack
expr: rabbitmq_queue_messages_unacked > 100
for: 1m
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
fixes:
- |
The ``RabbitMQTooMuchReady`` prometheus alert has been removed.

Since migrating to durable queues, messages are sent to all receivers, but
only one will respond. This results in high numbers of messages staying in
the ready state. The messages will be deleted automatically once they hit
resource limits. This appears to have no noticeable impact on CPU,
memory, or disk usage, so the alert is not needed.