Azure Event Hubs
Deliver event data to Azure Event Hubs for real-time data streaming and event ingestion at scale.
Configuration
| Field | Type | Required | Description |
|---|---|---|---|
namespace | string | Yes | The Event Hubs namespace. |
event_hub_name | string | Yes | The name of the Event Hub to send events to. |
connection_string | secret | Yes | The namespace-level connection string with Send permission. |
Quick Setup
- Navigate to Integrations in the sidebar.
- Open the Integration Library tab.
- Find Azure Event Hubs 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/azure_event_hubs/install \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "Azure Event Hubs",
"variant": "default",
"config": {
"namespace": "my-namespace",
"event_hub_name": "events"
},
"delivery_mode": "server_side"
}'Delivery
Events are delivered server-side from your Datafly Signal infrastructure directly to Azure Event Hubs. No client-side scripts are loaded for this integration.
Visit Azure Event Hubs documentation for full API documentation and credential setup instructions.