Azure Event Hubs

Deliver event data to Azure Event Hubs for real-time data streaming and event ingestion at scale.

Configuration

FieldTypeRequiredDescription
namespacestringYesThe Event Hubs namespace.
event_hub_namestringYesThe name of the Event Hub to send events to.
connection_stringsecretYesThe namespace-level connection string with Send permission.

Quick Setup

  1. Navigate to Integrations in the sidebar.
  2. Open the Integration Library tab.
  3. Find Azure Event Hubs or filter by Cloud Storage.
  4. Click Install, select a variant if available, and fill in the required fields.
  5. 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.