The Workflow Runs page
Click the Logs icon in the top bar of the builder to open the Workflow Runs page.
Use the Search, Filters, Columns, and Refresh controls at the top to narrow the list.
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

