list_tasks
Retrieve detailed task information for a specific DAG within Apache Airflow. The tool extracts task lists, including IDs and counts, to simplify DAG inspection and task monitoring.
Instructions
[Tool Role]: Lists all tasks for a specific DAG.
Args: dag_id: The DAG ID to get tasks for
Returns: List of tasks with detailed task information: dag_id, tasks, total_tasks
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"
}