get_dag_stats
Retrieve statistics and status information for Apache Airflow DAGs to monitor workflow execution and performance.
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"
}
},
"type": "object"
}