import "github.com/envoyproxy/go-control-plane/envoy/config/filter/http/adaptive_concurrency/v2alpha"
adaptive_concurrency.pb.go adaptive_concurrency.pb.validate.go
var File_envoy_config_filter_http_adaptive_concurrency_v2alpha_adaptive_concurrency_proto protoreflect.FileDescriptor
type AdaptiveConcurrency struct { // Types that are assignable to ConcurrencyControllerConfig: // *AdaptiveConcurrency_GradientControllerConfig ConcurrencyControllerConfig isAdaptiveConcurrency_ConcurrencyControllerConfig `protobuf_oneof:"concurrency_controller_config"` // If set to false, the adaptive concurrency filter will operate as a pass-through filter. If the // message is unspecified, the filter will be enabled. Enabled *core.RuntimeFeatureFlag `protobuf:"bytes,2,opt,name=enabled,proto3" json:"enabled,omitempty"` // contains filtered or unexported fields }
func (*AdaptiveConcurrency) Descriptor() ([]byte, []int)
Deprecated: Use AdaptiveConcurrency.ProtoReflect.Descriptor instead.
func (m *AdaptiveConcurrency) GetConcurrencyControllerConfig() isAdaptiveConcurrency_ConcurrencyControllerConfig
func (x *AdaptiveConcurrency) GetEnabled() *core.RuntimeFeatureFlag
func (x *AdaptiveConcurrency) GetGradientControllerConfig() *GradientControllerConfig
func (*AdaptiveConcurrency) ProtoMessage()
func (x *AdaptiveConcurrency) ProtoReflect() protoreflect.Message
func (x *AdaptiveConcurrency) Reset()
func (x *AdaptiveConcurrency) String() string
func (m *AdaptiveConcurrency) Validate() error
Validate checks the field values on AdaptiveConcurrency with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
type AdaptiveConcurrencyValidationError struct {
// contains filtered or unexported fields
}
AdaptiveConcurrencyValidationError is the validation error returned by AdaptiveConcurrency.Validate if the designated constraints aren't met.
func (e AdaptiveConcurrencyValidationError) Cause() error
Cause function returns cause value.
func (e AdaptiveConcurrencyValidationError) Error() string
Error satisfies the builtin error interface
func (e AdaptiveConcurrencyValidationError) ErrorName() string
ErrorName returns error name.
func (e AdaptiveConcurrencyValidationError) Field() string
Field function returns field value.
func (e AdaptiveConcurrencyValidationError) Key() bool
Key function returns key value.
func (e AdaptiveConcurrencyValidationError) Reason() string
Reason function returns reason value.
type AdaptiveConcurrency_GradientControllerConfig struct { // Gradient concurrency control will be used. GradientControllerConfig *GradientControllerConfig `protobuf:"bytes,1,opt,name=gradient_controller_config,json=gradientControllerConfig,proto3,oneof"` }
type GradientControllerConfig struct { // The percentile to use when summarizing aggregated samples. Defaults to p50. SampleAggregatePercentile *_type.Percent `protobuf:"bytes,1,opt,name=sample_aggregate_percentile,json=sampleAggregatePercentile,proto3" json:"sample_aggregate_percentile,omitempty"` ConcurrencyLimitParams *GradientControllerConfig_ConcurrencyLimitCalculationParams `protobuf:"bytes,2,opt,name=concurrency_limit_params,json=concurrencyLimitParams,proto3" json:"concurrency_limit_params,omitempty"` MinRttCalcParams *GradientControllerConfig_MinimumRTTCalculationParams `protobuf:"bytes,3,opt,name=min_rtt_calc_params,json=minRttCalcParams,proto3" json:"min_rtt_calc_params,omitempty"` // contains filtered or unexported fields }
Configuration parameters for the gradient controller.
func (*GradientControllerConfig) Descriptor() ([]byte, []int)
Deprecated: Use GradientControllerConfig.ProtoReflect.Descriptor instead.
func (x *GradientControllerConfig) GetConcurrencyLimitParams() *GradientControllerConfig_ConcurrencyLimitCalculationParams
func (x *GradientControllerConfig) GetMinRttCalcParams() *GradientControllerConfig_MinimumRTTCalculationParams
func (x *GradientControllerConfig) GetSampleAggregatePercentile() *_type.Percent
func (*GradientControllerConfig) ProtoMessage()
func (x *GradientControllerConfig) ProtoReflect() protoreflect.Message
func (x *GradientControllerConfig) Reset()
func (x *GradientControllerConfig) String() string
func (m *GradientControllerConfig) Validate() error
Validate checks the field values on GradientControllerConfig with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
type GradientControllerConfigValidationError struct {
// contains filtered or unexported fields
}
GradientControllerConfigValidationError is the validation error returned by GradientControllerConfig.Validate if the designated constraints aren't met.
func (e GradientControllerConfigValidationError) Cause() error
Cause function returns cause value.
func (e GradientControllerConfigValidationError) Error() string
Error satisfies the builtin error interface
func (e GradientControllerConfigValidationError) ErrorName() string
ErrorName returns error name.
func (e GradientControllerConfigValidationError) Field() string
Field function returns field value.
func (e GradientControllerConfigValidationError) Key() bool
Key function returns key value.
func (e GradientControllerConfigValidationError) Reason() string
Reason function returns reason value.
type GradientControllerConfig_ConcurrencyLimitCalculationParams struct { // The allowed upper-bound on the calculated concurrency limit. Defaults to 1000. MaxConcurrencyLimit *wrappers.UInt32Value `protobuf:"bytes,2,opt,name=max_concurrency_limit,json=maxConcurrencyLimit,proto3" json:"max_concurrency_limit,omitempty"` // The period of time samples are taken to recalculate the concurrency limit. ConcurrencyUpdateInterval *duration.Duration `protobuf:"bytes,3,opt,name=concurrency_update_interval,json=concurrencyUpdateInterval,proto3" json:"concurrency_update_interval,omitempty"` // contains filtered or unexported fields }
Parameters controlling the periodic recalculation of the concurrency limit from sampled request latencies.
func (*GradientControllerConfig_ConcurrencyLimitCalculationParams) Descriptor() ([]byte, []int)
Deprecated: Use GradientControllerConfig_ConcurrencyLimitCalculationParams.ProtoReflect.Descriptor instead.
func (x *GradientControllerConfig_ConcurrencyLimitCalculationParams) GetConcurrencyUpdateInterval() *duration.Duration
func (x *GradientControllerConfig_ConcurrencyLimitCalculationParams) GetMaxConcurrencyLimit() *wrappers.UInt32Value
func (*GradientControllerConfig_ConcurrencyLimitCalculationParams) ProtoMessage()
func (x *GradientControllerConfig_ConcurrencyLimitCalculationParams) ProtoReflect() protoreflect.Message
func (x *GradientControllerConfig_ConcurrencyLimitCalculationParams) Reset()
func (x *GradientControllerConfig_ConcurrencyLimitCalculationParams) String() string
func (m *GradientControllerConfig_ConcurrencyLimitCalculationParams) Validate() error
Validate checks the field values on GradientControllerConfig_ConcurrencyLimitCalculationParams with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
type GradientControllerConfig_ConcurrencyLimitCalculationParamsValidationError struct {
// contains filtered or unexported fields
}
GradientControllerConfig_ConcurrencyLimitCalculationParamsValidationError is the validation error returned by GradientControllerConfig_ConcurrencyLimitCalculationParams.Validate if the designated constraints aren't met.
Cause function returns cause value.
Error satisfies the builtin error interface
func (e GradientControllerConfig_ConcurrencyLimitCalculationParamsValidationError) ErrorName() string
ErrorName returns error name.
Field function returns field value.
Key function returns key value.
Reason function returns reason value.
type GradientControllerConfig_MinimumRTTCalculationParams struct { // The time interval between recalculating the minimum request round-trip time. Interval *duration.Duration `protobuf:"bytes,1,opt,name=interval,proto3" json:"interval,omitempty"` // The number of requests to aggregate/sample during the minRTT recalculation window before // updating. Defaults to 50. RequestCount *wrappers.UInt32Value `protobuf:"bytes,2,opt,name=request_count,json=requestCount,proto3" json:"request_count,omitempty"` // Randomized time delta that will be introduced to the start of the minRTT calculation window. // This is represented as a percentage of the interval duration. Defaults to 15%. // // Example: If the interval is 10s and the jitter is 15%, the next window will begin // somewhere in the range (10s - 11.5s). Jitter *_type.Percent `protobuf:"bytes,3,opt,name=jitter,proto3" json:"jitter,omitempty"` // The concurrency limit set while measuring the minRTT. Defaults to 3. MinConcurrency *wrappers.UInt32Value `protobuf:"bytes,4,opt,name=min_concurrency,json=minConcurrency,proto3" json:"min_concurrency,omitempty"` // Amount added to the measured minRTT to add stability to the concurrency limit during natural // variability in latency. This is expressed as a percentage of the measured value and can be // adjusted to allow more or less tolerance to the sampled latency values. // // Defaults to 25%. Buffer *_type.Percent `protobuf:"bytes,5,opt,name=buffer,proto3" json:"buffer,omitempty"` // contains filtered or unexported fields }
Parameters controlling the periodic minRTT recalculation. [#next-free-field: 6]
func (*GradientControllerConfig_MinimumRTTCalculationParams) Descriptor() ([]byte, []int)
Deprecated: Use GradientControllerConfig_MinimumRTTCalculationParams.ProtoReflect.Descriptor instead.
func (x *GradientControllerConfig_MinimumRTTCalculationParams) GetBuffer() *_type.Percent
func (x *GradientControllerConfig_MinimumRTTCalculationParams) GetInterval() *duration.Duration
func (x *GradientControllerConfig_MinimumRTTCalculationParams) GetJitter() *_type.Percent
func (x *GradientControllerConfig_MinimumRTTCalculationParams) GetMinConcurrency() *wrappers.UInt32Value
func (x *GradientControllerConfig_MinimumRTTCalculationParams) GetRequestCount() *wrappers.UInt32Value
func (*GradientControllerConfig_MinimumRTTCalculationParams) ProtoMessage()
func (x *GradientControllerConfig_MinimumRTTCalculationParams) ProtoReflect() protoreflect.Message
func (x *GradientControllerConfig_MinimumRTTCalculationParams) Reset()
func (x *GradientControllerConfig_MinimumRTTCalculationParams) String() string
func (m *GradientControllerConfig_MinimumRTTCalculationParams) Validate() error
Validate checks the field values on GradientControllerConfig_MinimumRTTCalculationParams with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
type GradientControllerConfig_MinimumRTTCalculationParamsValidationError struct {
// contains filtered or unexported fields
}
GradientControllerConfig_MinimumRTTCalculationParamsValidationError is the validation error returned by GradientControllerConfig_MinimumRTTCalculationParams.Validate if the designated constraints aren't met.
Cause function returns cause value.
Error satisfies the builtin error interface
func (e GradientControllerConfig_MinimumRTTCalculationParamsValidationError) ErrorName() string
ErrorName returns error name.
Field function returns field value.
Key function returns key value.
func (e GradientControllerConfig_MinimumRTTCalculationParamsValidationError) Reason() string
Reason function returns reason value.
Package envoy_config_filter_http_adaptive_concurrency_v2alpha imports 23 packages (graph) and is imported by 6 packages. Updated 2021-01-08. Refresh now. Tools for package owners.