Fan-Out Explorer
Use the stage controls to compare the synthetic input, authored output, and configuration at each step.
Interactive pipeline
FAN-OUT PATTERN
Multi-destination branch configuration
Stage 1 of 5
Single Destination
Basic pipeline with single file output - the typical starting point before implementing fan-out pattern.
0HighlightsAuthored emphasis only—not a computed diff.
Copy & download
Input
{"event_id": "sensor-001","sensor_id": "temp-sensor-42","timestamp": "2025-01-20T10:30:00Z","temperature": 23.5,"humidity": 65.2}Output
→ file:path: /var/data/events.jsonl// Single destination - no redundancyStage configuration
01-single-destination.yamlname: single-destination-pipeline
type: pipeline
config:
input:
http_server:
address: 0.0.0.0:8080
path: /events
output:
file:
path: /var/data/events.jsonl
codec: lines