Azure Data Explorer
Load event data into Azure Data Explorer for fast, highly scalable data exploration and analytics.
Configuration
| Field | Type | Required | Description |
|---|---|---|---|
cluster_url | string | Yes | The Azure Data Explorer cluster URL, e.g. https://xxx.region.kusto.windows.net. |
database | string | Yes | The target database name. |
table_name | string | Yes | The target table name to ingest data into. |
client_id | string | Yes | The Azure AD application client ID for authentication. |
client_secret | secret | Yes | The Azure AD application client secret for authentication. |
tenant_id | string | Yes | The Azure AD tenant ID. |
Quick Setup
- Navigate to Integrations in the sidebar.
- Open the Integration Library tab.
- Find Azure Data Explorer 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_data_explorer/install \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "Azure Data Explorer",
"variant": "default",
"config": {
"cluster_url": "https://mycluster.westeurope.kusto.windows.net",
"database": "analytics",
"table_name": "events",
"client_id": "00000000-0000-0000-0000-000000000000",
"tenant_id": "00000000-0000-0000-0000-000000000000"
},
"delivery_mode": "server_side"
}'Delivery
Events are delivered server-side from your Datafly Signal infrastructure directly to Azure Data Explorer. No client-side scripts are loaded for this integration.
Visit Azure Data Explorer documentation for full API documentation and credential setup instructions.