Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for storage_cluster_id (0.23 sec)

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

    	}
    
    	for i, m := range monitors {
    		storageClusterID := fmt.Sprintf("etcd-%d", i)
    
    		klog.V(4).InfoS("Start collecting storage metrics", "storage_cluster_id", storageClusterID)
    		ctx, cancel := context.WithTimeout(context.Background(), time.Second)
    		metrics, err := m.Monitor(ctx)
    		cancel()
    		m.Close()
    		if err != nil {
    			klog.InfoS("Failed to get storage metrics", "storage_cluster_id", storageClusterID, "err", err)
    			continue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 21:15:32 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/etcd3/metrics/metrics_test.go

    			},
    			err: nil,
    			want: `# HELP apiserver_storage_size_bytes [STABLE] Size of the storage database file physically allocated in bytes.
    			# TYPE apiserver_storage_size_bytes gauge
    			apiserver_storage_size_bytes{storage_cluster_id="etcd-0"} 1e+09
    			`,
    		},
    		{
    			desc:           "getters not configured",
    			getterOverride: nil,
    			err:            nil,
    			want:           ``,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 21:15:32 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.30.md

    - `kube-proxy` nftables mode is now compatible with kernel `5.4`. ([#122296](https://github.com/kubernetes/kubernetes/pull/122296), [@tnqn](https://github.com/tnqn))
    - Renamed Label cluster to `storage_cluster_id` for `apiserver_storage_size_bytes metric` ([#124283](https://github.com/kubernetes/kubernetes/pull/124283), [dims](https://github.com/dims))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.29.md

    ### Other (Cleanup or Flake)
    
    - For apiserver_storage_size_bytes metric, we are renaming the label for etcd to be "storage_cluster_id" instead of "cluster" to to reduce conflict and be very specific. ([#124294](https://github.com/kubernetes/kubernetes/pull/124294), [@dims](https://github.com/dims)) [SIG API Machinery, Instrumentation and Testing]
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.28.md

    ### Other (Cleanup or Flake)
    
    - For apiserver_storage_size_bytes metric, we are renaming the label for etcd to be "storage_cluster_id" instead of "cluster" to to reduce conflict and be very specific. ([#124293](https://github.com/kubernetes/kubernetes/pull/124293), [@dims](https://github.com/dims)) [SIG API Machinery, Instrumentation and Testing]
    
    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