Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for pilot_xds_pushes (0.37 sec)

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

                )
              |||
            ),
    
          xdsPushes:
            self.query(
              '{{type}}',
              |||
                sum by (type) (
                  irate(
                    pilot_xds_pushes{}
                  [$__rate_interval])
                )
              |||
            ),
    
          xdsErrors: [
            self.query(
              'Rejected Config ({{type}})',
              |||
    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

    	)
    	xdsClientTrackerMutex = &sync.Mutex{}
    	xdsClientTracker      = make(map[string]float64)
    
    	// Covers xds_builderr and xds_senderr for xds in {lds, rds, cds, eds}.
    	pushes = monitoring.NewSum(
    		"pilot_xds_pushes",
    		"Pilot build and send errors for lds, rds, cds and eds.",
    	)
    
    	cdsSendErrPushes = pushes.With(typeTag.Value("cds_senderr"))
    	edsSendErrPushes = pushes.With(typeTag.Value("eds_senderr"))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top