Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for P99 (0.03 sec)

  1. manifests/addons/dashboards/istio-service-dashboard.json

              "format": "time_series",
              "hide": false,
              "intervalFactor": 1,
              "legendFormat": "P99",
              "refId": "C"
            }
          ],
          "title": "Client Request Duration",
          "type": "timeseries"
        },
        {
          "datasource": {
            "type": "prometheus",
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 111.8K bytes
    - Viewed (0)
  2. manifests/addons/dashboards/istio-mesh-dashboard.gen.json

                   {
                      "matcher": {
                         "id": "byName",
                         "options": "Value #p99"
                      },
                      "properties": [
                         {
                            "id": "displayName",
                            "value": "P99 Latency"
                         },
                         {
                            "id": "decimals",
                            "value": 2
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Jul 26 23:54:32 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. manifests/addons/dashboards/lib/queries.libsonnet

                    by=['le', 'destination_workload', 'destination_workload_namespace']
                  )
                )
              )
            ) + q.withFormat('table') + q.withRefId('p90') + q.withInstant(),
            // P99
            self.query(
              '{{ destination_workload}}.{{ destination_workload_namespace }}',
              tableLabelJoin(
                quantile(
                  '0.99',
                  sum(
    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/istio-workload-dashboard.json

              "format": "time_series",
              "hide": false,
              "intervalFactor": 1,
              "legendFormat": "P99",
              "refId": "C"
            }
          ],
          "title": "Request Duration",
          "type": "timeseries"
        },
        {
          "datasource": {
            "type": "prometheus",
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 102.7K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/lib/panels.libsonnet

            + override.byName.withProperty('decimals', 2)
            + override.byName.withProperty('unit', 'ms'),
            override.byName.new('Value #p99')
            + override.byName.withProperty('displayName', 'P99 Latency')
            + override.byName.withProperty('decimals', 2)
            + override.byName.withProperty('unit', 'ms'),
            override.byName.new('Value #success')
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Jul 26 23:54:32 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. istioctl/pkg/metrics/metrics_test.go

    	}
    
    	var out bytes.Buffer
    	printHeader(&out)
    	printMetrics(&out, sm)
    	output := out.String()
    
    	expectedOutput := `                                  WORKLOAD    TOTAL RPS    ERROR RPS  P50 LATENCY  P90 LATENCY  P99 LATENCY
                                       details        0.040        0.000          2ms          4ms          4ms
    `
    	if output != expectedOutput {
    		t.Fatalf("Unexpected output; got:\n %q\nwant:\n %q", output, expectedOutput)
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Aug 16 01:35:47 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. istioctl/pkg/metrics/metrics.go

    namespace. It then executes a series of queries per requested workload to
    find the following top-level workload metrics: total requests per second,
    error rate, and request latency at p50, p90, and p99 percentiles. The
    query results are printed to the console, organized by workload name.
    
    All metrics returned are from server-side reports. This means that latencies
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top