Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for istiod_managed_clusters (0.2 sec)

  1. releasenotes/notes/istiod-cluster-metric.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    releaseNotes:
    - |
      **Added** a new metric (`istiod_managed_clusters`) to `istiod` to track the number of clusters managed by an
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 23 01:50:36 UTC 2021
    - 209 bytes
    - Viewed (0)
  2. pkg/kube/multicluster/secretcontroller.go

    		"Number of times remote clusters took too long to sync, causing slow startup that excludes remote clusters.",
    	)
    
    	clusterType = monitoring.CreateLabel("cluster_type")
    
    	clustersCount = monitoring.NewGauge(
    		"istiod_managed_clusters",
    		"Number of clusters managed by istiod",
    	)
    
    	localClusters  = clustersCount.With(clusterType.Value("local"))
    	remoteClusters = clustersCount.With(clusterType.Value("remote"))
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top