Add scope to GraphQL Metric Type

This commit is contained in:
Jan Eitzinger
2023-03-24 14:43:37 +01:00
parent c622967d27
commit 4d49698e5a
3 changed files with 4 additions and 1 deletions

View File

@@ -173,9 +173,10 @@ func (r *queryResolver) JobMetrics(ctx context.Context, id string, metrics []str
res := []*model.JobMetricWithName{}
for name, md := range data {
for _, metric := range md {
for scope, metric := range md {
res = append(res, &model.JobMetricWithName{
Name: name,
Scope: scope,
Metric: metric,
})
}