list_dag_runs
Retrieve execution history and status of Airflow DAG runs to monitor workflow performance, identify failures, and analyze execution patterns.
Instructions
Get execution history and status of DAG runs (workflow executions).
Use this tool when the user asks about:
"What DAG runs have executed?" or "Show me recent runs"
"Which runs failed/succeeded?"
"What's the status of my workflows?"
"When did DAG X last run?"
Execution times, durations, or states
Finding runs by date or status
Returns execution metadata including:
dag_run_id: Unique identifier for this execution
dag_id: Which DAG this run belongs to
state: Current state (running, success, failed, queued)
execution_date: When this run was scheduled to execute
start_date: When execution actually started
end_date: When execution completed (if finished)
run_type: manual, scheduled, or backfill
conf: Configuration passed to this run
Returns: JSON with list of DAG runs across all DAGs, sorted by most recent
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||