Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for apiserver_storage_objects (0.27 sec)

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

    # TYPE apiserver_storage_objects gauge
    apiserver_storage_objects{resource="foo"} 10
    `,
    		},
    		{
    			desc:     "failed fetch",
    			resource: "bar",
    			count:    -1,
    			want: `# HELP apiserver_storage_objects [STABLE] Number of stored objects at the time of last check split by kind. In case of a fetching error, the value will be -1.
    # TYPE apiserver_storage_objects gauge
    apiserver_storage_objects{resource="bar"} -1
    `,
    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"},
    	)
    	objectCounts = compbasemetrics.NewGaugeVec(
    		&compbasemetrics.GaugeOpts{
    			Name:           "apiserver_storage_objects",
    			Help:           "Number of stored objects at the time of last check split by kind. In case of a fetching error, the value will be -1.",
    			StabilityLevel: compbasemetrics.STABLE,
    		},
    		[]string{"resource"},
    	)
    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.21.md

    - Windows nodes on GCE will take longer to start due to dependencies installed at node creation time. ([#98284](https://github.com/kubernetes/kubernetes/pull/98284), [@pjh](https://github.com/pjh)) [SIG Cloud Provider]
    - `apiserver_storage_objects` (a newer version of `etcd_object_counts`) is promoted and marked as stable. ([#100082](https://github.com/kubernetes/kubernetes/pull/100082), [@logicalhan](https://github.com/logicalhan))
    
    ### Uncategorized
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.25.md

    - `apiserver_dropped_requests` is dropped from this release since `apiserver_request_total` can now be used to track dropped requests. `etcd_object_counts` is also removed in favor of `apiserver_storage_objects`. `apiserver_registered_watchers` is also removed in favor of `apiserver_longrunning_requests`. ([#110337](https://github.com/kubernetes/kubernetes/pull/110337), [@logicalhan](https://github.com/logicalhan))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
Back to top