Skip to content

Commit

Permalink
Remove accelerator logging (#894)
Browse files Browse the repository at this point in the history
This log line gets called for every pod using an accelerator on the cluster, every 5 seconds (configured by queueUsageDataRefreshInterval)

This causes massive spam for little to no benefit
  • Loading branch information
JamesMurkin authored Mar 17, 2022
1 parent 1527ff2 commit 4adb435
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion internal/executor/utilisation/pod_utilisation.go
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,6 @@ func (q *KubeletPodUtilisationService) updatePodStats(podStats *v1alpha1.PodStat
// add custom metrics for gpu
for _, c := range podStats.Containers {
for _, a := range c.Accelerators {
log.Infof("Detected accelerator: %s %s", a.Make, a.Model)
accelerator = true
acceleratorDutyCycles += int64(a.DutyCycle)
acceleratorUsedMemory += int64(a.MemoryUsed)
Expand Down

0 comments on commit 4adb435

Please sign in to comment.