bbovenzi commented on code in PR #41017:
URL: https://github.com/apache/airflow/pull/41017#discussion_r1700305231
##########
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:
I could still see us wanting to make the dag_ids optional and adding
pagination. But we can add that later without affecting backcompat.
--
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]