Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for NewCounterVec (0.19 sec)

  1. pkg/kubelet/metrics/metrics.go

    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    
    	// RuntimeOperations is a Counter that tracks the cumulative number of remote runtime operations.
    	// Broken down by operation type.
    	RuntimeOperations = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Subsystem:      KubeletSubsystem,
    			Name:           RuntimeOperationsKey,
    			Help:           "Cumulative number of runtime operations by operation type.",
    			StabilityLevel: metrics.ALPHA,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  2. 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)
  3. staging/src/k8s.io/apiserver/pkg/admission/metrics/metrics.go

    				StabilityLevel: metrics.STABLE,
    			},
    			[]string{"name", "type", "operation", "rejected"},
    		),
    
    		latenciesSummary: nil,
    	}
    
    	webhookRejection := metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "webhook_rejection_count",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:01:40 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/metrics.go

    // Append adds more
    func (rs Registerables) Append(more ...compbasemetrics.Registerable) Registerables {
    	return append(rs, more...)
    }
    
    var (
    	apiserverRejectedRequestsTotal = compbasemetrics.NewCounterVec(
    		&compbasemetrics.CounterOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "rejected_requests_total",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 19:40:05 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  5. 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)
  6. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/metrics/metrics.go

    	// apiserver_envelope_encryption_key_id_hash_total{apiserver_id_hash="sha256",key_id_hash="sha256",
    	// provider_name="providerName",transformation_type="from_storage"} 1
    	KeyIDHashTotal = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "key_id_hash_total",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 09 22:31:32 UTC 2023
    - 12K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. pkg/controller/volume/persistentvolume/metrics/metrics.go

    		"Gauge measuring number of persistent volume claim currently unbound",
    		[]string{namespaceLabel}, nil,
    		metrics.ALPHA, "")
    
    	volumeOperationErrorsMetric = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Name:           "volume_operation_total_errors",
    			Help:           "Total volume operation errors",
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"plugin_name", "operation_name"})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 25 13:09:16 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  10. pkg/kubelet/prober/prober_manager.go

    	kubeutil "k8s.io/kubernetes/pkg/kubelet/util"
    	"k8s.io/utils/clock"
    )
    
    // ProberResults stores the cumulative number of a probe by result as prometheus metrics.
    var ProberResults = metrics.NewCounterVec(
    	&metrics.CounterOpts{
    		Subsystem:      "prober",
    		Name:           "probe_total",
    		Help:           "Cumulative number of a liveness, readiness or startup probe for a container by result.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 11K bytes
    - Viewed (0)
Back to top