Documentation
¶
Index ¶
- Variables
- type QuantileType
- func (QuantileType) Descriptor() protoreflect.EnumDescriptor
- func (x QuantileType) Enum() *QuantileType
- func (QuantileType) EnumDescriptor() ([]byte, []int)deprecated
- func (x QuantileType) Number() protoreflect.EnumNumber
- func (x QuantileType) String() string
- func (QuantileType) Type() protoreflect.EnumType
- type Quantiles
- func (*Quantiles) Descriptor() ([]byte, []int)deprecated
- func (x *Quantiles) GetQ50() float64
- func (x *Quantiles) GetQ75() float64
- func (x *Quantiles) GetQ80() float64
- func (x *Quantiles) GetQ85() float64
- func (x *Quantiles) GetQ90() float64
- func (x *Quantiles) GetQ95() float64
- func (x *Quantiles) GetQ98() float64
- func (x *Quantiles) GetQ99() float64
- func (x *Quantiles) GetQ100() float64
- func (*Quantiles) ProtoMessage()
- func (x *Quantiles) ProtoReflect() protoreflect.Message
- func (x *Quantiles) Reset()
- func (m *Quantiles) SetQ50(v float64)
- func (m *Quantiles) SetQ75(v float64)
- func (m *Quantiles) SetQ80(v float64)
- func (m *Quantiles) SetQ85(v float64)
- func (m *Quantiles) SetQ90(v float64)
- func (m *Quantiles) SetQ95(v float64)
- func (m *Quantiles) SetQ98(v float64)
- func (m *Quantiles) SetQ99(v float64)
- func (m *Quantiles) SetQ100(v float64)
- func (x *Quantiles) String() string
- type Tag
- func (*Tag) Descriptor() ([]byte, []int)deprecated
- func (x *Tag) GetKey() string
- func (x *Tag) GetValue() string
- func (*Tag) ProtoMessage()
- func (x *Tag) ProtoReflect() protoreflect.Message
- func (x *Tag) Reset()
- func (m *Tag) SetKey(v string)
- func (m *Tag) SetValue(v string)
- func (x *Tag) String() string
Constants ¶
This section is empty.
Variables ¶
View Source
var ( QuantileType_name = map[int32]string{ 0: "QUANTILE_TYPE_UNSPECIFIED", 1: "QUANTILE_TYPE_50", 2: "QUANTILE_TYPE_75", 3: "QUANTILE_TYPE_80", 4: "QUANTILE_TYPE_85", 5: "QUANTILE_TYPE_90", 6: "QUANTILE_TYPE_95", 7: "QUANTILE_TYPE_98", 8: "QUANTILE_TYPE_99", 9: "QUANTILE_TYPE_100", } QuantileType_value = map[string]int32{ "QUANTILE_TYPE_UNSPECIFIED": 0, "QUANTILE_TYPE_50": 1, "QUANTILE_TYPE_75": 2, "QUANTILE_TYPE_80": 3, "QUANTILE_TYPE_85": 4, "QUANTILE_TYPE_90": 5, "QUANTILE_TYPE_95": 6, "QUANTILE_TYPE_98": 7, "QUANTILE_TYPE_99": 8, "QUANTILE_TYPE_100": 9, } )
Enum value maps for QuantileType.
View Source
var File_yandex_cloud_loadtesting_api_v1_common_quantiles_proto protoreflect.FileDescriptor
View Source
var File_yandex_cloud_loadtesting_api_v1_common_tag_proto protoreflect.FileDescriptor
Functions ¶
This section is empty.
Types ¶
type QuantileType ¶
type QuantileType int32
Quantiles (percentiles).
const ( // Unspecified percentile. QuantileType_QUANTILE_TYPE_UNSPECIFIED QuantileType = 0 // 50 percentile (median). QuantileType_QUANTILE_TYPE_50 QuantileType = 1 // 75 percentile. QuantileType_QUANTILE_TYPE_75 QuantileType = 2 // 80 percentile. QuantileType_QUANTILE_TYPE_80 QuantileType = 3 // 85 percentile. QuantileType_QUANTILE_TYPE_85 QuantileType = 4 // 90 percentile. QuantileType_QUANTILE_TYPE_90 QuantileType = 5 // 95 percentile. QuantileType_QUANTILE_TYPE_95 QuantileType = 6 // 98 percentile. QuantileType_QUANTILE_TYPE_98 QuantileType = 7 // 99 percentile. QuantileType_QUANTILE_TYPE_99 QuantileType = 8 // 100 percentile (maximum or minimum). QuantileType_QUANTILE_TYPE_100 QuantileType = 9 )
func (QuantileType) Descriptor ¶
func (QuantileType) Descriptor() protoreflect.EnumDescriptor
func (QuantileType) Enum ¶
func (x QuantileType) Enum() *QuantileType
func (QuantileType) EnumDescriptor
deprecated
func (QuantileType) EnumDescriptor() ([]byte, []int)
Deprecated: Use QuantileType.Descriptor instead.
func (QuantileType) Number ¶
func (x QuantileType) Number() protoreflect.EnumNumber
func (QuantileType) String ¶
func (x QuantileType) String() string
func (QuantileType) Type ¶
func (QuantileType) Type() protoreflect.EnumType
type Quantiles ¶
type Quantiles struct {
// 50 percentile (median).
Q50 float64 `protobuf:"fixed64,1,opt,name=q50,proto3" json:"q50,omitempty"`
// 75 percentile.
Q75 float64 `protobuf:"fixed64,2,opt,name=q75,proto3" json:"q75,omitempty"`
// 80 percentile.
Q80 float64 `protobuf:"fixed64,3,opt,name=q80,proto3" json:"q80,omitempty"`
// 85 percentile.
Q85 float64 `protobuf:"fixed64,4,opt,name=q85,proto3" json:"q85,omitempty"`
// 90 percentile.
Q90 float64 `protobuf:"fixed64,5,opt,name=q90,proto3" json:"q90,omitempty"`
// 95 percentile.
Q95 float64 `protobuf:"fixed64,6,opt,name=q95,proto3" json:"q95,omitempty"`
// 98 percentile.
Q98 float64 `protobuf:"fixed64,7,opt,name=q98,proto3" json:"q98,omitempty"`
// 99 percentile.
Q99 float64 `protobuf:"fixed64,8,opt,name=q99,proto3" json:"q99,omitempty"`
// 100 percentile (maximum or minimum).
Q100 float64 `protobuf:"fixed64,9,opt,name=q100,proto3" json:"q100,omitempty"`
// contains filtered or unexported fields
}
Statistical data aggregated by predefined set of quantiles.
func (*Quantiles) Descriptor
deprecated
func (*Quantiles) ProtoMessage ¶
func (*Quantiles) ProtoMessage()
func (*Quantiles) ProtoReflect ¶
func (x *Quantiles) ProtoReflect() protoreflect.Message
type Tag ¶
type Tag struct {
// Key of the tag.
Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
// Value of the tag.
Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
// contains filtered or unexported fields
}
Tag attached to some entity.
func (*Tag) Descriptor
deprecated
func (*Tag) ProtoMessage ¶
func (*Tag) ProtoMessage()
func (*Tag) ProtoReflect ¶
func (x *Tag) ProtoReflect() protoreflect.Message
Click to show internal directories.
Click to hide internal directories.