reganbaum commented on code in PR #41017:
URL: https://github.com/apache/airflow/pull/41017#discussion_r1698824381
##########
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:
Thanks so much for working on this! One question I have here is if this can
be an optional parameter, and by default, return all the stats of all the dags,
which is the current behavior of the `dag_stats` endpoint.
--
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]