Skip to main content
The Audit page (/audit) is the complete, immutable record of everything that happened on the platform. Every workflow step, governance decision, registry change, agent execution, and system action is logged with full context. Events stream in via Dashboard API reactive subscriptions — new entries appear the moment they are written.

Event Log

The audit log is append-only by design. No delete or update mutations are exposed — once recorded, an event cannot be modified or removed. Each event shows:
FieldDescription
CategoryGovernance, execution, lifecycle, security, or configuration
Event typeSpecific action (e.g., workflow_started, step_failed, policy_evaluated)
ResourceThe affected resource with a link to its detail page
ActorWho or what triggered the event (user or agent)
TimestampPrecise time in both relative and absolute format
Detail payloadFull event data, expandable as formatted JSON

Filtering

Combine filters for precision:
FilterOptions
CategoryGovernance, execution, lifecycle, security, configuration — or All
Time range1h, 6h, 24h (default), 7d
Resource typeWorkflow, step, agent, gateway, policy
Resource IDScope to a specific resource
ActorFilter to a specific user or agent
Text searchFree-text across event type, step ID, actor, and detail payload
Category and search filtering is client-side for instant switching. Time range changes re-query the Convex subscription.

Timeline View

Switch from the default table view to a chronological timeline visualization. Events display as cards on a vertical timeline with colored dots matching their category. Zoom into specific time windows to see the exact sequence of events. The timeline view is particularly useful for incident investigation — seeing how events across categories interleave reveals patterns that a flat list obscures.

Run Audit

All events related to a specific workflow run, aggregated into a single timeline. Access this from the run detail page or by filtering the audit log to a run ID. The run audit shows the complete history:
  • Launch — who started the run, with what inputs
  • Governance decisions — every policy evaluation and gate outcome
  • Step dispatches — which agent, which gateway, with what parameters
  • Completions and failures — step outcomes with timing and cost
  • Approvals — requests, resolutions, and escalations
This is the compliance view — everything that happened in one run, in order, with full detail.

Deep Linking

Click any entity reference in the log to navigate directly to the relevant resource:
Click targetNavigation
Run IDOpens the workflow run detail page
Agent IDOpens the agent detail page
Step IDOpens the step detail within the parent run
ActorFilters the audit log to all recent actions by that actor
Deep links support URL hash format (#entity=run:abc123) for sharing direct references with other operators.
The append-only guarantee supports SOC 2 and incident response requirements. Data lifecycle is managed through retention policies with TTL-based cleanup — a controlled, auditable mechanism rather than arbitrary deletion.