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
| Field | Type | Required | Description |
|---|---|---|---|
api_key | secret | Yes | Your Wallaroo API key for authenticating inference requests. |
pipeline_id | string | Yes | The Wallaroo pipeline ID to send events to for inference. |
model_endpoint | string | Yes | The full URL of the Wallaroo model inference endpoint. |
Quick Setup
- Navigate to Integrations in the sidebar.
- Open the Integration Library tab.
- Find Wallaroo or filter by Other.
- 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/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.