Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for evictions_total (0.22 sec)

  1. pkg/controller/nodelifecycle/metrics.go

    const (
    	nodeControllerSubsystem = "node_collector"
    	zoneHealthStatisticKey  = "zone_health"
    	zoneSizeKey             = "zone_size"
    	zoneNoUnhealthyNodesKey = "unhealthy_nodes_in_zone"
    	evictionsTotalKey       = "evictions_total"
    
    	updateNodeHealthKey     = "update_node_health_duration_seconds"
    	updateAllNodesHealthKey = "update_all_nodes_health_duration_seconds"
    )
    
    var (
    	zoneHealth = metrics.NewGaugeVec(
    		&metrics.GaugeOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 21:55:34 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.24.md

    - Remove a v1alpha1 networking API for ClusterCIDRConfig ([#109436](https://github.com/kubernetes/kubernetes/pull/109436), [@JamesLaverack](https://github.com/JamesLaverack))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  3. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    			if result {
    				// Count the number of evictions.
    				zone := nodetopology.GetZoneKey(node)
    				evictionsTotal.WithLabelValues(zone).Inc()
    			}
    
    			return result, 0
    		})
    	}
    }
    
    // monitorNodeHealth verifies node health are constantly updated by kubelet, and if not, post "NodeReady==ConditionUnknown".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
Back to top