Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for debugLogThresholdsWithObservation (0.6 sec)

  1. pkg/kubelet/eviction/eviction_manager.go

    	debugLogObservations("observations", observations)
    
    	// determine the set of thresholds met independent of grace period
    	thresholds = thresholdsMet(thresholds, observations, false)
    	debugLogThresholdsWithObservation("thresholds - ignoring grace period", thresholds, observations)
    
    	// determine the set of thresholds previously met that have not yet satisfied the associated min-reclaim
    	if len(m.thresholdsMet) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 18:55:56 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/helpers.go

    		} else {
    			klogV.InfoS("Eviction manager:", "log", logPrefix, "signal", k, "resourceName", signalToResource[k], "available", v.available, "capacity", v.capacity)
    		}
    	}
    }
    
    func debugLogThresholdsWithObservation(logPrefix string, thresholds []evictionapi.Threshold, observations signalObservations) {
    	klogV := klog.V(3)
    	if !klogV.Enabled() {
    		return
    	}
    	for i := range thresholds {
    		threshold := thresholds[i]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
Back to top