You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Execution endpoints allow to use labels and childFilter filters while searching.
Unfortunately following stats endpoints for executions doesn't allow that:
/api/v1/stats/executions/daily
/api/v1/stats/executions/daily/group-by-flow
/api/v1/stats/executions/daily/group-by-namespace
/api/v1/stats/executions/latest/group-by-flow
I looked at the source code and it looks like DB repository is prepared for that functionality (method filteringQuery). The problem is that parameters labels and childFilters are not defined in controller action and so passed as null to the method filteringQuery from dailyStatisticsQuery
Feature description
Execution endpoints allow to use
labels
andchildFilter
filters while searching.Unfortunately following stats endpoints for executions doesn't allow that:
/api/v1/stats/executions/daily
/api/v1/stats/executions/daily/group-by-flow
/api/v1/stats/executions/daily/group-by-namespace
/api/v1/stats/executions/latest/group-by-flow
I looked at the source code and it looks like DB repository is prepared for that functionality (method
filteringQuery
). The problem is that parameterslabels
andchildFilters
are not defined in controller action and so passed asnull
to the methodfilteringQuery
fromdailyStatisticsQuery
Is it possible that this extension will be implemented? Thank you
The text was updated successfully, but these errors were encountered: