RabbitMQ
Deliver event data to RabbitMQ for flexible, open-source message brokering with advanced routing.
Configuration
| Field | Type | Required | Description |
|---|---|---|---|
amqp_url | secret | Yes | The AMQP connection URL, e.g. amqps://user:pass@host:port/vhost. |
exchange | string | Yes | The exchange name to publish messages to. |
routing_key | string | No | The routing key for published messages. Defaults to events. |
Quick Setup
- Navigate to Integrations in the sidebar.
- Open the Integration Library tab.
- Find RabbitMQ or filter by Cloud Storage.
- Click Install, select a variant if available, and fill in the required fields.
- Click Install Integration to create the integration with a ready-to-use default configuration.
API Setup
curl -X POST http://localhost:8084/v1/admin/integration-catalog/rabbitmq/install \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "RabbitMQ",
"variant": "default",
"config": {
"exchange": "datafly.events",
"routing_key": "events"
},
"delivery_mode": "server_side"
}'Delivery
Events are delivered server-side from your Datafly Signal infrastructure directly to RabbitMQ. No client-side scripts are loaded for this integration.
Visit RabbitMQ documentation for full API documentation and credential setup instructions.