bbovenzi commented on code in PR #41017:
URL: https://github.com/apache/airflow/pull/41017#discussion_r1698845788
##########
airflow/api_connexion/openapi/v1.yaml:
##########
@@ -2161,6 +2161,32 @@ paths:
"404":
$ref: "#/components/responses/NotFound"
+ /dagStats:
+ get:
+ summary: List Dag statistics
+ x-openapi-router-controller:
airflow.api_connexion.endpoints.dag_stats_endpoint
+ operationId: get_dag_stats
+ tags: [DagStats]
+ parameters:
+ - name: dag_ids
+ in: query
+ schema:
+ type: string
+ required: true
+ description: |
+ One or more DAG IDs separated by commas to filter relevant Dags.
Review Comment:
Good point. This also allows us to add other filter parameters like how the
Dags list has active/paused DAGs
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]