Filter out unrequested scopes when fetching data from archive

This commit is contained in:
Lou Knauer 2022-04-07 09:51:34 +02:00
parent cbc8227550
commit cdfa63d5ca

View File

@ -108,11 +108,18 @@ func LoadData(job *schema.Job, metrics []string, scopes []schema.MetricScope, ct
}
// Avoid sending unrequested data to the client:
if metrics != nil {
if metrics != nil || scopes != nil {
if metrics == nil {
metrics = make([]string, 0, len(jd))
for k := range jd {
metrics = append(metrics, k)
}
}
res := schema.JobData{}
for _, metric := range metrics {
if perscope, ok := jd[metric]; ok {
if len(scopes) > 1 {
if len(perscope) > 1 {
subset := make(map[schema.MetricScope]*schema.JobMetric)
for _, scope := range scopes {
if jm, ok := perscope[scope]; ok {