IntegrationsCloud StorageAzure Data Explorer

Azure Data Explorer

Load event data into Azure Data Explorer for fast, highly scalable data exploration and analytics.

Configuration

FieldTypeRequiredDescription
cluster_urlstringYesThe Azure Data Explorer cluster URL, e.g. https://xxx.region.kusto.windows.net.
databasestringYesThe target database name.
table_namestringYesThe target table name to ingest data into.
client_idstringYesThe Azure AD application client ID for authentication.
client_secretsecretYesThe Azure AD application client secret for authentication.
tenant_idstringYesThe Azure AD tenant ID.

Quick Setup

  1. Navigate to Integrations in the sidebar.
  2. Open the Integration Library tab.
  3. Find Azure Data Explorer 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_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.