mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2024-12-26 05:19:05 +01:00
comment debug logging
This commit is contained in:
parent
93d5a0e532
commit
d4f487d554
@ -77,7 +77,7 @@ func RegisterFootprintWorker() {
|
||||
}
|
||||
|
||||
for _, metric := range allMetrics {
|
||||
avg, min, max := 0.0, 0.0, 0.0 // math.MaxFloat32, -math.MaxFloat32
|
||||
avg, min, max := 0.0, 0.0, 0.0
|
||||
data, ok := jobStats[metric] // Metric:[Hostname:Stats]
|
||||
if ok {
|
||||
for _, res := range job.Resources {
|
||||
@ -86,13 +86,15 @@ func RegisterFootprintWorker() {
|
||||
avg += hostStats.Avg
|
||||
min = math.Min(min, hostStats.Min)
|
||||
max = math.Max(max, hostStats.Max)
|
||||
} else {
|
||||
log.Debugf("no stats data return for host %s in job %d, metric %s", res.Hostname, job.JobID, metric)
|
||||
}
|
||||
// else {
|
||||
// log.Debugf("no stats data return for host %s in job %d, metric %s", res.Hostname, job.JobID, metric)
|
||||
// }
|
||||
}
|
||||
}
|
||||
} else {
|
||||
log.Debugf("no stats data return for job %d, metric %s", job.JobID, metric)
|
||||
}
|
||||
// else {
|
||||
// log.Debugf("no stats data return for job %d, metric %s", job.JobID, metric)
|
||||
// }
|
||||
|
||||
// Add values rounded to 2 digits
|
||||
jobMeta.Statistics[metric] = schema.JobStatistics{
|
||||
|
Loading…
Reference in New Issue
Block a user