Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for NewCounterVec (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    	)
    
    	// TODO(a-robinson): Add unit tests for the handling of these metrics once
    	// the upstream library supports it.
    	requestCounter = compbasemetrics.NewCounterVec(
    		&compbasemetrics.CounterOpts{
    			Subsystem:      APIServerComponent,
    			Name:           "request_total",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K 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)
  3. staging/src/k8s.io/apiserver/pkg/storage/value/metrics.go

    			Buckets:        metrics.ExponentialBuckets(5e-6, 2, 25),
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"transformation_type", "transformer_prefix"},
    	)
    
    	transformerOperationsTotal = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "transformation_operations_total",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 22:44:02 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top