feat: add new distribution plots to status view

- numCores and numAccs
This commit is contained in:
Christoph Kluge
2023-08-29 14:02:23 +02:00
parent f933cad87f
commit 3014f59cc2
3 changed files with 43 additions and 1 deletions

View File

@@ -442,6 +442,18 @@ func (r *JobRepository) AddHistograms(
return nil, err
}
stat.HistNumCores, err = r.jobsStatisticsHistogram(ctx, "job.num_hwthreads as value", filter)
if err != nil {
log.Warn("Error while loading job statistics histogram: num hwthreads")
return nil, err
}
stat.HistNumAccs, err = r.jobsStatisticsHistogram(ctx, "job.num_acc as value", filter)
if err != nil {
log.Warn("Error while loading job statistics histogram: num acc")
return nil, err
}
log.Debugf("Timer AddHistograms %s", time.Since(start))
return stat, nil
}