-
does rabbitmq_event_exchange plugin support streams event create/delete notifications? Thanks, Christian |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
The rabbitmq_event_exchange plugin in RabbitMQ doesn't inherently provide stream event notifications such as creation or deletion. Its main purpose is to route internal RabbitMQ events to designated exchanges for client consumption. For stream-related notifications, you can utilize RabbitMQ's Management Plugin through its HTTP API or CLI commands. Custom solutions or integration with external monitoring tools may be needed for more specific event notifications within RabbitMQ. |
Beta Was this translation helpful? Give feedback.
-
There is no reason why internal events cannot include certain events for streams, e.g. when they are created and deleted. Not that highly dynamic streams is a workflow streams were designed for but as far as auditing goes, it would be a great addition. You are welcome to contribute a PR that would emit relevant events when a stream is created or deleted. Using the |
Beta Was this translation helpful? Give feedback.
-
Stream creation and deletion events are already emitted, they are tagged as any other queue type: |
Beta Was this translation helpful? Give feedback.
Stream creation and deletion events are already emitted, they are tagged as any other queue type:
queue.created
andqueue.deleted