get_dag
Retrieve comprehensive details of a specific DAG in Apache Airflow, including schedule, owners, tags, and description, to simplify cluster monitoring and management.
Instructions
[Tool Role]: Retrieves detailed information for a specific DAG.
Args: dag_id: The DAG ID to get details for
Returns: Comprehensive DAG details: dag_id, schedule_interval, start_date, owners, tags, description, etc.
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"
}