Skip to content

Runs & Executions

List runs for an app:

Terminal window
superplane runs list --app-id <app_id>

Filter runs by state or result:

Terminal window
superplane runs list --app-id <app_id> --state STATE_STARTED --result RESULT_FAILED

Show full details for a specific run:

Terminal window
superplane runs describe <run_id> --app-id <app_id>

The following commands interact with lower-level execution primitives. They are deprecated in favor of the runs commands above.

List node executions:

Terminal window
superplane executions list --app-id <app_id> --node-id <node_id>

Cancel a node execution:

Terminal window
superplane executions cancel --app-id <app_id> --execution-id <execution_id>

List queue items for a node:

Terminal window
superplane queue list --app-id <app_id> --node-id <node_id>

Delete a queue item:

Terminal window
superplane queue delete --app-id <app_id> --node-id <node_id> --item-id <item_id>