Wallaroo

Send event data to Wallaroo for real-time ML model inference, pipeline execution, and AI-powered event enrichment.

⚠️

This integration is currently in beta. Configuration and behaviour may change.

Configuration

FieldTypeRequiredDescription
api_keysecretYesYour Wallaroo API key for authenticating inference requests.
pipeline_idstringYesThe Wallaroo pipeline ID to send events to for inference.
model_endpointstringYesThe full URL of the Wallaroo model inference endpoint.

Quick Setup

  1. Navigate to Integrations in the sidebar.
  2. Open the Integration Library tab.
  3. Find Wallaroo or filter by Other.
  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/wallaroo/install \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Wallaroo",
    "variant": "default",
    "config": {
      "api_key": "your-api-key",
      "pipeline_id": "pipeline-abc-123",
      "model_endpoint": "https://my-instance.wallaroo.ai/v1/api/pipelines/infer"
    },
    "delivery_mode": "server_side"
  }'

Delivery

Events are delivered server-side from your Datafly Signal infrastructure directly to the Wallaroo API. No client-side scripts are loaded for this integration.

Visit Wallaroo documentation for full API documentation and credential setup instructions.