get_flow_runs
Retrieve and filter workflow execution records by criteria like status, flow name, tags, or time range to monitor and analyze Prefect flow runs.
Instructions
Get a list of flow runs with optional filtering.
Args: limit: Maximum number of flow runs to return offset: Number of flow runs to skip flow_name: Filter by flow name state_type: Filter by state type (e.g., "RUNNING", "COMPLETED", "FAILED") state_name: Filter by state name deployment_id: Filter by deployment ID tags: Filter by tags start_time_before: ISO formatted datetime string start_time_after: ISO formatted datetime string
Returns: A list of flow runs with their details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deployment_id | No | ||
flow_name | No | ||
limit | No | ||
offset | No | ||
start_time_after | No | ||
start_time_before | No | ||
state_name | No | ||
state_type | No | ||
tags | No |