The Workflow Runs page
Click the Logs icon in the top bar of the builder to open the Workflow Runs page.
| Column | Meaning |
|---|---|
| ID | Unique execution identifier |
| Version | The workflow version that ran |
| Created At | When the execution started |
| Completed At | When the execution finished |
| Duration | Wall-clock time |
| Status | success, failed, in_progress, waiting, or pending |
| Actions | Click to view run details |
Viewing run details
Click Actions on any run to open its detail view. For each step that ran, you can see:- Status — whether the step succeeded, failed, or was skipped
- Input — the
ctxsnapshot that was passed into the step - Output — what the step added to
ctx - Duration — how long the step took
- Error — full error message and traceback (for Code steps)
API access
Programmatic access to runs:Logging from steps
There’s no separate log output facility. Use these patterns:- Code steps — anything you
print()is captured in the step’s output and visible in the run detail - HTTP API steps — the full request and response are captured automatically
- Custom telemetry — add a Code step late in the workflow to post metrics to your own monitoring system

