Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for NewCounterVec (4.26 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/cacher/metrics/metrics.go

     */
    var (
    	listCacheCount = compbasemetrics.NewCounterVec(
    		&compbasemetrics.CounterOpts{
    			Namespace:      namespace,
    			Name:           "cache_list_total",
    			Help:           "Number of LIST requests served from watch cache",
    			StabilityLevel: compbasemetrics.ALPHA,
    		},
    		[]string{"resource_prefix", "index"},
    	)
    	listCacheNumFetched = compbasemetrics.NewCounterVec(
    		&compbasemetrics.CounterOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 07:39:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. 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)
  4. pkg/controller/job/metrics/metrics.go

    	//   completion_mode: Indexed, NonIndexed
    	//   result:          success, error
    	//   action:          reconciling, tracking, pods_created, pods_deleted
    	JobSyncNum = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Subsystem:      JobControllerSubsystem,
    			Name:           "job_syncs_total",
    			Help:           "The number of job syncs",
    			StabilityLevel: metrics.STABLE,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:25:15 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. pkg/controller/podgc/metrics/metrics.go

    )
    
    var (
    	DeletingPodsTotal = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Subsystem:      podGCController,
    			Name:           "force_delete_pods_total",
    			Help:           "Number of pods that are being forcefully deleted since the Pod GC Controller started.",
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"namespace", "reason"},
    	)
    	DeletingPodsErrorTotal = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 18:06:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. pkg/controller/nodeipam/ipam/cidrset/metrics.go

    var (
    	cidrSetAllocations = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Subsystem:      nodeIpamSubsystem,
    			Name:           "cidrset_cidrs_allocations_total",
    			Help:           "Counter measuring total number of CIDR allocations.",
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"clusterCIDR"},
    	)
    	cidrSetReleases = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Subsystem:      nodeIpamSubsystem,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 05 15:18:45 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/metrics/metrics.go

    	"k8s.io/component-base/metrics/legacyregistry"
    )
    
    const (
    	namespace = "apiserver"
    	subsystem = "encryption_config_controller"
    )
    
    var (
    	encryptionConfigAutomaticReloadsTotal = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "automatic_reloads_total",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 05:47:46 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. 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)
  9. pkg/registry/core/pod/rest/metrics.go

    	usageEnforce     = "enforce_tls"
    	usageSkipAllowed = "skip_tls_allowed"
    )
    
    var (
    	// podLogsUsage counts and categorizes how the insecure backend skip TLS option is used and allowed.
    	podLogsUsage = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "insecure_backend_total",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 16:43:09 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/egressselector/metrics/metrics.go

    	latencies *metrics.HistogramVec
    	failures  *metrics.CounterVec
    }
    
    // newDialMetrics create a new DialMetrics, configured with default metric names.
    func newDialMetrics() *DialMetrics {
    	starts := metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "dial_start_total",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 01 23:36:51 UTC 2022
    - 4.3K bytes
    - Viewed (0)
Back to top