get_dag_stats
Retrieve detailed statistics for specified DAGs in Apache Airflow, enabling monitoring and analysis of workflow performance and status.
Instructions
Get DAG stats
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dag_ids | No |
Input Schema (JSON Schema)
{
"properties": {
"dag_ids": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Dag Ids"
}
},
"title": "get_dag_statsArguments",
"type": "object"
}