Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for etcd_request_errors_total (0.43 sec)

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

    # TYPE etcd_requests_total counter
    etcd_requests_total{operation="foo",type="bar"} 1
    # HELP etcd_request_errors_total [ALPHA] Etcd failed request counts for each operation and object type.
    # TYPE etcd_request_errors_total counter
    etcd_request_errors_total{operation="foo",type="bar"} 1
    `,
    		},
    	}
    
    	for _, test := range testCases {
    		t.Run(test.desc, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 21:15:32 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/etcd3/metrics/metrics.go

    			StabilityLevel: compbasemetrics.ALPHA,
    		},
    		[]string{"operation", "type"},
    	)
    	etcdRequestErrorCounts = compbasemetrics.NewCounterVec(
    		&compbasemetrics.CounterOpts{
    			Name:           "etcd_request_errors_total",
    			Help:           "Etcd failed request counts for each operation and object type.",
    			StabilityLevel: compbasemetrics.ALPHA,
    		},
    		[]string{"operation", "type"},
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 21:15:32 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.28.md

    - Apiserver adds two new metrics `etcd_requests_total` and `etcd_request_errors_total` that allow users to monitor requests to etcd storage, split by operation and resource type. ([#117222](https://github.com/kubernetes/kubernetes/pull/117222), [@iyear](https://github.com/iyear)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
Back to top