Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for pilot_xds (0.56 sec)

  1. manifests/addons/dashboards/lib/queries.libsonnet

              |||
                sum(envoy_cluster_upstream_cx_active{cluster_name="xds-grpc"})
              |||
            ),
            self.query(
              'Connections (server reported)',
              |||
                sum(pilot_xds{})
              |||
            ),
          ],
    
          pushTime:
            self.query(
              '{{le}}',
              |||
                sum(rate(pilot_xds_push_time_bucket{}[1m])) by (le)
              |||
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. pilot/pkg/xds/monitoring.go

    		"pilot_services",
    		"Total services known to pilot.",
    	)
    
    	// TODO: Update all the resource stats in separate routine
    	// virtual services, destination rules, gateways, etc.
    	xdsClients = monitoring.NewGauge(
    		"pilot_xds",
    		"Number of endpoints connected to this pilot using XDS.",
    	)
    	xdsClientTrackerMutex = &sync.Mutex{}
    	xdsClientTracker      = make(map[string]float64)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. manifests/addons/dashboards/pilot-dashboard.gen.json

                },
                {
                   "datasource": {
                      "type": "prometheus",
                      "uid": "$datasource"
                   },
                   "expr": "sum(pilot_xds{})",
                   "legendFormat": "Connections (server reported)"
                }
             ],
             "title": "Connections",
             "type": "timeseries"
          },
          {
             "datasource": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. istioctl/pkg/proxystatus/proxystatus.go

    	"istio.io/istio/istioctl/pkg/completion"
    	"istio.io/istio/istioctl/pkg/multixds"
    	"istio.io/istio/istioctl/pkg/util/ambient"
    	"istio.io/istio/istioctl/pkg/writer/compare"
    	"istio.io/istio/istioctl/pkg/writer/pilot"
    	pilotxds "istio.io/istio/pilot/pkg/xds"
    	"istio.io/istio/pkg/log"
    )
    
    var configDumpFile string
    
    func readConfigFile(filename string) ([]byte, error) {
    	file := os.Stdin
    	if filename != "-" {
    		var err error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. istioctl/pkg/multixds/gather.go

    func CpInfo(xdsResponse *discovery.DiscoveryResponse) pilotxds.IstioControlPlaneInstance {
    	if xdsResponse.ControlPlane == nil {
    		return pilotxds.IstioControlPlaneInstance{
    			Component: "MISSING",
    			ID:        "MISSING",
    			Info: istioversion.BuildInfo{
    				Version: "MISSING CP ID",
    			},
    		}
    	}
    
    	cpID := pilotxds.IstioControlPlaneInstance{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 08 08:38:19 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. samples/addons/grafana.yaml

    "datasource":{"type":"prometheus","uid":"$datasource"},"expr":"sum(envoy_cluster_upstream_cx_active{cluster_name=\"xds-grpc\"})","legendFormat":"Connections (client reported)"},{"datasource":{"type":"prometheus","uid":"$datasource"},"expr":"sum(pilot_xds{})","legendFormat":"Connections (server reported)"}],"title":"Connections","type":"timeseries"},{"datasource":{"type":"datasource","uid":"-- Mixed --"},"description":"Number of push errors. Many of these are at least potentional fatal and should...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    "format": "time_series", "intervalFactor": 1, "legendFormat": "Virtual Services", "refId": "A" }, { "expr": "avg(pilot_services{app=\"istiod\"})", "format": "time_series", "intervalFactor": 1, "legendFormat": "Services", "refId": "B" }, { "expr": "sum(pilot_xds{app=\"istiod\"}) by (pod)", "format": "time_series", "intervalFactor": 1, "legendFormat": "Connected Endpoints {{pod}}", "refId": "E" } ], "thresholds": [], "timeFrom": null, "timeRegions": [], "timeShift": null, "title": "ADS Monitoring", "tooltip":...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top