Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NewCounterVec (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/etcd3/metrics/metrics.go

    		[]string{"operation", "type"},
    	)
    	etcdRequestCounts = compbasemetrics.NewCounterVec(
    		&compbasemetrics.CounterOpts{
    			Name:           "etcd_requests_total",
    			Help:           "Etcd request counts for each operation and object type.",
    			StabilityLevel: compbasemetrics.ALPHA,
    		},
    		[]string{"operation", "type"},
    	)
    	etcdRequestErrorCounts = compbasemetrics.NewCounterVec(
    		&compbasemetrics.CounterOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 21:15:32 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. 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)
  3. 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