prefect.cli
flow_run
Flow run command — native cyclopts implementation. Interact with flow runs.
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
prefect.cli.flow_runinspect inspect(id: UUID)
ls ls()
$ prefect flow-runs ls --state Running
$ prefect flow-runs ls --state Running --state late
$ prefect flow-runs ls --state-type RUNNING
$ prefect flow-runs ls --state-type RUNNING --state-type FAILED
delete delete(id: UUID)
cancel cancel(id: UUID)
retry retry(id_or_name: str)
$ prefect flow-run retry abc123-def456-7890-...
$ prefect flow-run retry my-flow-run-name
$ prefect flow-run retry abc123 --entrypoint ./flows/my_flow.py:my_flow
logs logs(id: UUID)
watch watch(id: UUID)
execute execute(id: Optional[UUID] = None)
Was this page helpful?