Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewCounterVec (0.14 sec)

  1. pkg/scheduler/metrics/metrics.go

    	Unreserve                   = "Unreserve"
    	Permit                      = "Permit"
    )
    
    // All the histogram based metrics have 1ms as size for the smallest bucket.
    var (
    	scheduleAttempts = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Subsystem:      SchedulerSubsystem,
    			Name:           "schedule_attempts_total",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:22:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. pkg/proxy/metrics/metrics.go

    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    
    	// ProxyHealthzTotal is the number of returned HTTP Status for each
    	// healthz probe.
    	ProxyHealthzTotal = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Subsystem:      kubeProxySubsystem,
    			Name:           "proxy_healthz_total",
    			Help:           "Cumulative proxy healthz HTTP status",
    			StabilityLevel: metrics.ALPHA,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top