get_dag_tasks
Retrieve all tasks associated with a specific Airflow DAG to monitor workflow components and dependencies.
Instructions
Get tasks for DAG
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dag_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"dag_id": {
"title": "Dag Id",
"type": "string"
}
},
"required": [
"dag_id"
],
"type": "object"
}