vor show run
vor show run¶
Print details of runs
Synopsis¶
Print details of runs in the current playpen.
This command displays information about runs, allowing you to:
- View all runs in the current playpen
- Filter runs by various criteria (status, time, approval, name)
- Choose between table and JSON output formats
vor show run [flags]
Examples¶
# Show all runs in table format (default)
vor show run
# Show runs in JSON format
vor show run --output json
# Show only pending runs
vor show run --pending
# Show runs that started in the last 24 hours
vor show run --after 24h
# Show runs with a specific status
vor show run --status Running
# Show runs with a specific name (exact match)
vor show run --name "My Run"
# Show runs with names containing a string
vor show run --name-like "test"
# Show only approved runs
vor show run --approved
# Show all runs that started in the last 7 days, have the word "prod" in the name, and are approved
vor show run --after 168h --approved --name-like "prod"
Options¶
--after duration Show only runs that started after this duration ago (e.g. 1h30m)
--approved Show only approved runs (conflicts with --not-approved)
--before duration Show only runs that started before this duration ago (e.g. 24h)
--finished Show only completed runs (conflicts with --pending, --status)
-h, --help help for run
--name string Filter runs by name (exact match)
--name-like string Filter runs by name (substring match)
--not-approved Show only runs that are not approved (conflicts with --approved)
--pending Show only pending runs (conflicts with --finished, --status)
--status strings Filter runs by status ("Initialized"|"Compiling"|"Code_Compile_Error"|"Running"|"Job_Finished_With_Errors"|"Job_Finished_With_Warnings"|"Finished"|"Job_Canceled")
Options inherited from parent commands¶
--play string playpen path
--renew-token renew token (default true)
SEE ALSO¶
- vor show - Print details of an object