The runs list
For a given pipeline, the runs list shows:- Started at — kickoff timestamp.
- Duration — total wall clock.
- Status — success / partial / failed / running.
- Items in / out — how many source items came in, how many chunks were written out.
- Cost — total spend (embeddings, LLM enrichers, model calls).
Drill into a run
Click a run to see its stage breakdown:- Trigger — what kicked it off (with the run payload).
- Source — items pulled, size, cache hits.
- Clean — dropped counts, redaction stats.
- Normalize — chunks produced per source item.
- Enrich — per-enricher time and cost.
- Output — writes by destination.
Item-level view
Any item that made it into the pipeline can be inspected end-to-end:- The raw source (or a hash if it was too large).
- What the Clean stage did to it (which redactions, which strippers).
- What chunks Normalize produced.
- What metadata Enrich added.
- Where in the Output store it landed (or why it was skipped).
Errors
Errors show up as red items in the stage view. Common ones:
Click any error for the full stack and the exact input that triggered it.
Rerun
Two flavors:- Rerun (from cache) — only reprocesses items whose source content changed. Fast. Default.
- Rerun (ignore cache) — reprocesses everything. Use when pipeline logic changed and you want a full rebuild.
Alerts
Configure per-pipeline alerts:- On failure — post to Slack / email / webhook.
- On threshold — items dropped > X%, cost > $Y, duration > Z minutes.
- On silence — expected schedule missed.