Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 42 of 42 for NewCounterVec (0.11 sec)

  1. 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)
  2. 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