Merge branch 'sample_resolution_select' of https://github.com/ClusterCockpit/cc-backend into sample_resolution_select

This commit is contained in:
Christoph Kluge
2024-08-26 09:55:36 +02:00
3 changed files with 30 additions and 10 deletions

View File

@@ -528,14 +528,14 @@ func (ccms *CCMetricStore) LoadStats(
ctx context.Context,
) (map[string]map[string]schema.MetricStatistics, error) {
metricConfigs := archive.GetCluster(job.Cluster).MetricConfig
resolution := 9000
// metricConfigs := archive.GetCluster(job.Cluster).MetricConfig
// resolution := 9000
for _, mc := range metricConfigs {
resolution = min(resolution, mc.Timestep)
}
// for _, mc := range metricConfigs {
// resolution = min(resolution, mc.Timestep)
// }
queries, _, err := ccms.buildQueries(job, metrics, []schema.MetricScope{schema.MetricScopeNode}, resolution) // #166 Add scope shere for analysis view accelerator normalization?
queries, _, err := ccms.buildQueries(job, metrics, []schema.MetricScope{schema.MetricScopeNode}, 0) // #166 Add scope shere for analysis view accelerator normalization?
if err != nil {
log.Warn("Error while building query")
return nil, err