Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for xdsPushes (0.06 sec)

  1. manifests/addons/dashboards/pilot.libsonnet

        ]),
      ], panelHeight=10, startY=1)
      + g.util.grid.makeGrid([
        row.new('Push Information')
        + row.withPanels([
          panels.timeSeries.xdsPushes(
            'XDS Pushes', queries.xdsPushes, |||
              Rate of XDS push operations, by type. This is incremented on a per-proxy basis.
            |||
          ),
          panels.timeSeries.base(
            'Events', queries.pilotEvents, |||
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. manifests/addons/dashboards/ztunnel.libsonnet

            'XDS Connections', queries.ztunnelXdsConnections, |||
              Count of XDS connection terminations.
              This will typically spike every 30min for each instance.
            |||
          ),
          panels.timeSeries.xdsPushes(
            'XDS Pushes', queries.ztunnelXdsMessages, |||
              Count of XDS messages, by type.
            |||
          ),
          panels.timeSeries.base('Workload Manager', queries.workloadManager, |||
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Jul 26 23:54:32 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. manifests/addons/dashboards/lib/queries.libsonnet

            ),
    
          ztunnelXdsMessages:
            self.query(
              '{{url}}',
              sum(irate(labels('istio_xds_message_total', podLabels)), by=['url'])
            ),
    
          xdsPushes:
            self.query(
              '{{type}}',
              sum(irate('pilot_xds_pushes'), by=['type'])
            ),
    
          xdsErrors: [
            self.query(
              'Rejected Config ({{type}})',
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Jul 26 23:54:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/lib/panels.libsonnet

          + timeSeries.standardOptions.withUnit('ops')
          + custom.withFillOpacity(100)
          + custom.withShowPoints('never')
          + custom.withGradientMode('none'),
    
        xdsPushes(title, targets, desc=''):
          self.bars(title, targets, desc='')
          + timeSeries.standardOptions.withOverrides([
            overrideSeries('cds', 'Clusters'),
            overrideSeries('eds', 'Endpoints'),
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Jul 26 23:54:32 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top