Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for statPercent (0.1 sec)

  1. manifests/addons/dashboards/istio-mesh.libsonnet

      grid.makeGrid([
        row.new('Global Traffic')
        + row.withPanels([
          panels.timeSeries.statRps('Traffic Volume', queries.globalRequest, 'Total requests in the cluster'),
          panels.timeSeries.statPercent('Success Rate', queries.globalRequestSuccessRate, 'Total success rate of requests in the cluster'),
          panels.timeSeries.statRps('4xxs', queries.globalRequest4xx, 'Total 4xx requests in in the cluster'),
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Jul 26 23:54:32 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. manifests/addons/dashboards/lib/panels.libsonnet

            stat.panelOptions.withDescription(desc)
          else {},
    
        statRps(title, targets, desc=''):
          self.stat(title, targets, desc)
          + timeSeries.standardOptions.withUnit('reqps'),
    
        statPercent(title, targets, desc=''):
          self.stat(title, targets, desc)
          + timeSeries.standardOptions.withUnit('percentunit'),
    
        allocations(title, targets, desc=''):
          self.base(title, targets, desc)
    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