Traces

Debug individual executions. See exactly what happened.


Viewing Traces

Go to dashboard.kalibr.systems.

Each trace shows:

  • Workflow ID
  • Duration and cost
  • Success/failure status
  • All spans (steps) in order

Trace Detail View

Click any trace to see the full breakdown:

research_pipeline - 4.2s, $0.67, SUCCESS

├─ search_agent (1.2s, $0.12)
│  └─ openai.embeddings
├─ analyze_agent (2.1s, $0.35)
│  └─ anthropic.claude-3-opus
└─ write_agent (0.9s, $0.20)
   └─ openai.gpt-4o

Filtering

Filter by any dimension:

FilterExample
Workflowworkflow_id = research_pipeline
Customertenant_id = acme_corp
Statusstatus = error
Costcost > 0.50

Debugging Failures

Failed traces show exactly where things broke:

research_pipeline - FAILED

├─ search_agent (1.2s, $0.12) ✓
├─ analyze_agent - RateLimitError ✗
└─ write_agent (skipped)

Next Steps