aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/yandex-cloud-api-protos/yandex/cloud/loadtesting/api/v1/common/quantiles.proto
blob: a4799d392f2461dccbfc723d5d6bed212abf28b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
syntax = "proto3";

package yandex.cloud.loadtesting.api.v1.common;

option go_package = "github.com/yandex-cloud/go-genproto/yandex/cloud/loadtesting/api/v1/common;common";
option java_package = "yandex.cloud.api.loadtesting.api.v1.common";

// Statistical data aggregated by predefined set of quantiles.
message Quantiles {
  // 50 percentile (median).
  double q50 = 1;

  // 75 percentile.
  double q75 = 2;

  // 80 percentile.
  double q80 = 3;

  // 85 percentile.
  double q85 = 4;

  // 90 percentile.
  double q90 = 5;
  
  // 95 percentile.
  double q95 = 6;

  // 98 percentile.
  double q98 = 7;

  // 99 percentile.
  double q99 = 8;

  // 100 percentile (maximum or minimum).
  double q100 = 9;
}