Skip to main content
Trace querying is available through the CelerFlow dashboard with full filtering, search, and export. There is no public REST API endpoint for trace queries at this time.

Dashboard filters

The trace viewer supports the following filters:
FilterValues
AgentSelect one or more agents
Categoryoutbound_write, outbound_read, local_write, local_read
Servicegmail, notion, github, system, etc.
Statusallowed, blocked, confirmed, denied, error
Date rangeCustom date range picker
Full-text searchSearch tool names, summaries, and parameters

Trace data shape

Each trace record contains:
{
  "id": "uuid",
  "agent_id": "uuid",
  "trace_type": "after",
  "span_id": "span_abc123",
  "tool_name": "gmail_send",
  "category": "outbound_write",
  "service_name": "gmail",
  "status": "allowed",
  "result_summary": "Email sent to team@example.com",
  "duration_ms": 1200,
  "task_name": "Write weekly report",
  "task_group_id": "session_xyz",
  "created_at": "2026-03-28T07:00:00Z"
}

Export

Trace data can be exported as CSV or JSON from the dashboard. For compliance exports with full audit trails, see Audit export.