Documentation ¶
Index ¶
- Variables
- type LocalRateLimitDescriptor
- func (*LocalRateLimitDescriptor) Descriptor() ([]byte, []int)deprecated
- func (x *LocalRateLimitDescriptor) GetEntries() []*RateLimitDescriptor_Entry
- func (x *LocalRateLimitDescriptor) GetTokenBucket() *v3.TokenBucket
- func (*LocalRateLimitDescriptor) ProtoMessage()
- func (x *LocalRateLimitDescriptor) ProtoReflect() protoreflect.Message
- func (x *LocalRateLimitDescriptor) Reset()
- func (x *LocalRateLimitDescriptor) String() string
- type RateLimitDescriptor
- func (*RateLimitDescriptor) Descriptor() ([]byte, []int)deprecated
- func (x *RateLimitDescriptor) GetEntries() []*RateLimitDescriptor_Entry
- func (x *RateLimitDescriptor) GetLimit() *RateLimitDescriptor_RateLimitOverride
- func (*RateLimitDescriptor) ProtoMessage()
- func (x *RateLimitDescriptor) ProtoReflect() protoreflect.Message
- func (x *RateLimitDescriptor) Reset()
- func (x *RateLimitDescriptor) String() string
- type RateLimitDescriptor_Entry
- func (*RateLimitDescriptor_Entry) Descriptor() ([]byte, []int)deprecated
- func (x *RateLimitDescriptor_Entry) GetKey() string
- func (x *RateLimitDescriptor_Entry) GetValue() string
- func (*RateLimitDescriptor_Entry) ProtoMessage()
- func (x *RateLimitDescriptor_Entry) ProtoReflect() protoreflect.Message
- func (x *RateLimitDescriptor_Entry) Reset()
- func (x *RateLimitDescriptor_Entry) String() string
- type RateLimitDescriptor_RateLimitOverride
- func (*RateLimitDescriptor_RateLimitOverride) Descriptor() ([]byte, []int)deprecated
- func (x *RateLimitDescriptor_RateLimitOverride) GetRequestsPerUnit() uint32
- func (x *RateLimitDescriptor_RateLimitOverride) GetUnit() v3.RateLimitUnit
- func (*RateLimitDescriptor_RateLimitOverride) ProtoMessage()
- func (x *RateLimitDescriptor_RateLimitOverride) ProtoReflect() protoreflect.Message
- func (x *RateLimitDescriptor_RateLimitOverride) Reset()
- func (x *RateLimitDescriptor_RateLimitOverride) String() string
- type VhRateLimitsOptions
- func (VhRateLimitsOptions) Descriptor() protoreflect.EnumDescriptor
- func (x VhRateLimitsOptions) Enum() *VhRateLimitsOptions
- func (VhRateLimitsOptions) EnumDescriptor() ([]byte, []int)deprecated
- func (x VhRateLimitsOptions) Number() protoreflect.EnumNumber
- func (x VhRateLimitsOptions) String() string
- func (VhRateLimitsOptions) Type() protoreflect.EnumType
- type XRateLimitHeadersRFCVersion
- func (XRateLimitHeadersRFCVersion) Descriptor() protoreflect.EnumDescriptor
- func (x XRateLimitHeadersRFCVersion) Enum() *XRateLimitHeadersRFCVersion
- func (XRateLimitHeadersRFCVersion) EnumDescriptor() ([]byte, []int)deprecated
- func (x XRateLimitHeadersRFCVersion) Number() protoreflect.EnumNumber
- func (x XRateLimitHeadersRFCVersion) String() string
- func (XRateLimitHeadersRFCVersion) Type() protoreflect.EnumType
Constants ¶
This section is empty.
Variables ¶
var ( XRateLimitHeadersRFCVersion_name = map[int32]string{ 0: "OFF", 1: "DRAFT_VERSION_03", } XRateLimitHeadersRFCVersion_value = map[string]int32{ "OFF": 0, "DRAFT_VERSION_03": 1, } )
Enum value maps for XRateLimitHeadersRFCVersion.
var ( VhRateLimitsOptions_name = map[int32]string{ 0: "OVERRIDE", 1: "INCLUDE", 2: "IGNORE", } VhRateLimitsOptions_value = map[string]int32{ "OVERRIDE": 0, "INCLUDE": 1, "IGNORE": 2, } )
Enum value maps for VhRateLimitsOptions.
var File_envoy_extensions_common_ratelimit_v3_ratelimit_proto protoreflect.FileDescriptor
Functions ¶
This section is empty.
Types ¶
type LocalRateLimitDescriptor ¶
type LocalRateLimitDescriptor struct { // Descriptor entries. Entries []*RateLimitDescriptor_Entry `protobuf:"bytes,1,rep,name=entries,proto3" json:"entries,omitempty"` // Token Bucket algorithm for local ratelimiting. TokenBucket *v3.TokenBucket `protobuf:"bytes,2,opt,name=token_bucket,json=tokenBucket,proto3" json:"token_bucket,omitempty"` // contains filtered or unexported fields }
func (*LocalRateLimitDescriptor) Descriptor
deprecated
func (*LocalRateLimitDescriptor) Descriptor() ([]byte, []int)
Deprecated: Use LocalRateLimitDescriptor.ProtoReflect.Descriptor instead.
func (*LocalRateLimitDescriptor) GetEntries ¶
func (x *LocalRateLimitDescriptor) GetEntries() []*RateLimitDescriptor_Entry
func (*LocalRateLimitDescriptor) GetTokenBucket ¶
func (x *LocalRateLimitDescriptor) GetTokenBucket() *v3.TokenBucket
func (*LocalRateLimitDescriptor) ProtoMessage ¶
func (*LocalRateLimitDescriptor) ProtoMessage()
func (*LocalRateLimitDescriptor) ProtoReflect ¶
func (x *LocalRateLimitDescriptor) ProtoReflect() protoreflect.Message
func (*LocalRateLimitDescriptor) Reset ¶
func (x *LocalRateLimitDescriptor) Reset()
func (*LocalRateLimitDescriptor) String ¶
func (x *LocalRateLimitDescriptor) String() string
type RateLimitDescriptor ¶
type RateLimitDescriptor struct { // Descriptor entries. Entries []*RateLimitDescriptor_Entry `protobuf:"bytes,1,rep,name=entries,proto3" json:"entries,omitempty"` // Optional rate limit override to supply to the ratelimit service. Limit *RateLimitDescriptor_RateLimitOverride `protobuf:"bytes,2,opt,name=limit,proto3" json:"limit,omitempty"` // contains filtered or unexported fields }
A RateLimitDescriptor is a list of hierarchical entries that are used by the service to determine the final rate limit key and overall allowed limit. Here are some examples of how they might be used for the domain "envoy".
.. code-block:: cpp
["authenticated": "false"], ["remote_address": "10.0.0.1"]
What it does: Limits all unauthenticated traffic for the IP address 10.0.0.1. The configuration supplies a default limit for the *remote_address* key. If there is a desire to raise the limit for 10.0.0.1 or block it entirely it can be specified directly in the configuration.
.. code-block:: cpp
["authenticated": "false"], ["path": "/foo/bar"]
What it does: Limits all unauthenticated traffic globally for a specific path (or prefix if configured that way in the service).
.. code-block:: cpp
["authenticated": "false"], ["path": "/foo/bar"], ["remote_address": "10.0.0.1"]
What it does: Limits unauthenticated traffic to a specific path for a specific IP address. Like (1) we can raise/block specific IP addresses if we want with an override configuration.
.. code-block:: cpp
["authenticated": "true"], ["client_id": "foo"]
What it does: Limits all traffic for an authenticated client "foo"
.. code-block:: cpp
["authenticated": "true"], ["client_id": "foo"], ["path": "/foo/bar"]
What it does: Limits traffic to a specific path for an authenticated client "foo"
The idea behind the API is that (1)/(2)/(3) and (4)/(5) can be sent in 1 request if desired. This enables building complex application scenarios with a generic backend.
Optionally the descriptor can contain a limit override under a "limit" key, that specifies the number of requests per unit to use instead of the number configured in the rate limiting service.
func (*RateLimitDescriptor) Descriptor
deprecated
func (*RateLimitDescriptor) Descriptor() ([]byte, []int)
Deprecated: Use RateLimitDescriptor.ProtoReflect.Descriptor instead.
func (*RateLimitDescriptor) GetEntries ¶
func (x *RateLimitDescriptor) GetEntries() []*RateLimitDescriptor_Entry
func (*RateLimitDescriptor) GetLimit ¶
func (x *RateLimitDescriptor) GetLimit() *RateLimitDescriptor_RateLimitOverride
func (*RateLimitDescriptor) ProtoMessage ¶
func (*RateLimitDescriptor) ProtoMessage()
func (*RateLimitDescriptor) ProtoReflect ¶
func (x *RateLimitDescriptor) ProtoReflect() protoreflect.Message
func (*RateLimitDescriptor) Reset ¶
func (x *RateLimitDescriptor) Reset()
func (*RateLimitDescriptor) String ¶
func (x *RateLimitDescriptor) String() string
type RateLimitDescriptor_Entry ¶
type RateLimitDescriptor_Entry struct { // Descriptor key. Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` // Descriptor value. Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` // contains filtered or unexported fields }
func (*RateLimitDescriptor_Entry) Descriptor
deprecated
func (*RateLimitDescriptor_Entry) Descriptor() ([]byte, []int)
Deprecated: Use RateLimitDescriptor_Entry.ProtoReflect.Descriptor instead.
func (*RateLimitDescriptor_Entry) GetKey ¶
func (x *RateLimitDescriptor_Entry) GetKey() string
func (*RateLimitDescriptor_Entry) GetValue ¶
func (x *RateLimitDescriptor_Entry) GetValue() string
func (*RateLimitDescriptor_Entry) ProtoMessage ¶
func (*RateLimitDescriptor_Entry) ProtoMessage()
func (*RateLimitDescriptor_Entry) ProtoReflect ¶
func (x *RateLimitDescriptor_Entry) ProtoReflect() protoreflect.Message
func (*RateLimitDescriptor_Entry) Reset ¶
func (x *RateLimitDescriptor_Entry) Reset()
func (*RateLimitDescriptor_Entry) String ¶
func (x *RateLimitDescriptor_Entry) String() string
type RateLimitDescriptor_RateLimitOverride ¶
type RateLimitDescriptor_RateLimitOverride struct { // The number of requests per unit of time. RequestsPerUnit uint32 `protobuf:"varint,1,opt,name=requests_per_unit,json=requestsPerUnit,proto3" json:"requests_per_unit,omitempty"` // The unit of time. Unit v3.RateLimitUnit `protobuf:"varint,2,opt,name=unit,proto3,enum=envoy.type.v3.RateLimitUnit" json:"unit,omitempty"` // contains filtered or unexported fields }
Override rate limit to apply to this descriptor instead of the limit configured in the rate limit service. See :ref:`rate limit override <config_http_filters_rate_limit_rate_limit_override>` for more information.
func (*RateLimitDescriptor_RateLimitOverride) Descriptor
deprecated
func (*RateLimitDescriptor_RateLimitOverride) Descriptor() ([]byte, []int)
Deprecated: Use RateLimitDescriptor_RateLimitOverride.ProtoReflect.Descriptor instead.
func (*RateLimitDescriptor_RateLimitOverride) GetRequestsPerUnit ¶
func (x *RateLimitDescriptor_RateLimitOverride) GetRequestsPerUnit() uint32
func (*RateLimitDescriptor_RateLimitOverride) GetUnit ¶
func (x *RateLimitDescriptor_RateLimitOverride) GetUnit() v3.RateLimitUnit
func (*RateLimitDescriptor_RateLimitOverride) ProtoMessage ¶
func (*RateLimitDescriptor_RateLimitOverride) ProtoMessage()
func (*RateLimitDescriptor_RateLimitOverride) ProtoReflect ¶
func (x *RateLimitDescriptor_RateLimitOverride) ProtoReflect() protoreflect.Message
func (*RateLimitDescriptor_RateLimitOverride) Reset ¶
func (x *RateLimitDescriptor_RateLimitOverride) Reset()
func (*RateLimitDescriptor_RateLimitOverride) String ¶
func (x *RateLimitDescriptor_RateLimitOverride) String() string
type VhRateLimitsOptions ¶
type VhRateLimitsOptions int32
const ( // Use the virtual host rate limits unless the route has a rate limit policy. VhRateLimitsOptions_OVERRIDE VhRateLimitsOptions = 0 // Use the virtual host rate limits even if the route has a rate limit policy. VhRateLimitsOptions_INCLUDE VhRateLimitsOptions = 1 // Ignore the virtual host rate limits even if the route does not have a rate limit policy. VhRateLimitsOptions_IGNORE VhRateLimitsOptions = 2 )
func (VhRateLimitsOptions) Descriptor ¶
func (VhRateLimitsOptions) Descriptor() protoreflect.EnumDescriptor
func (VhRateLimitsOptions) Enum ¶
func (x VhRateLimitsOptions) Enum() *VhRateLimitsOptions
func (VhRateLimitsOptions) EnumDescriptor
deprecated
func (VhRateLimitsOptions) EnumDescriptor() ([]byte, []int)
Deprecated: Use VhRateLimitsOptions.Descriptor instead.
func (VhRateLimitsOptions) Number ¶
func (x VhRateLimitsOptions) Number() protoreflect.EnumNumber
func (VhRateLimitsOptions) String ¶
func (x VhRateLimitsOptions) String() string
func (VhRateLimitsOptions) Type ¶
func (VhRateLimitsOptions) Type() protoreflect.EnumType
type XRateLimitHeadersRFCVersion ¶
type XRateLimitHeadersRFCVersion int32
Defines the version of the standard to use for X-RateLimit headers.
const ( // X-RateLimit headers disabled. XRateLimitHeadersRFCVersion_OFF XRateLimitHeadersRFCVersion = 0 // Use `draft RFC Version 03 <https://tools.ietf.org/id/draft-polli-ratelimit-headers-03.html>`_ where 3 headers will be added: // // - “X-RateLimit-Limit“ - indicates the request-quota associated to the // client in the current time-window followed by the description of the // quota policy. The value is returned by the maximum tokens of the token bucket. // - “X-RateLimit-Remaining“ - indicates the remaining requests in the // current time-window. The value is returned by the remaining tokens in the token bucket. // - “X-RateLimit-Reset“ - indicates the number of seconds until reset of // the current time-window. The value is returned by the remaining fill interval of the token bucket. XRateLimitHeadersRFCVersion_DRAFT_VERSION_03 XRateLimitHeadersRFCVersion = 1 )
func (XRateLimitHeadersRFCVersion) Descriptor ¶
func (XRateLimitHeadersRFCVersion) Descriptor() protoreflect.EnumDescriptor
func (XRateLimitHeadersRFCVersion) Enum ¶
func (x XRateLimitHeadersRFCVersion) Enum() *XRateLimitHeadersRFCVersion
func (XRateLimitHeadersRFCVersion) EnumDescriptor
deprecated
func (XRateLimitHeadersRFCVersion) EnumDescriptor() ([]byte, []int)
Deprecated: Use XRateLimitHeadersRFCVersion.Descriptor instead.
func (XRateLimitHeadersRFCVersion) Number ¶
func (x XRateLimitHeadersRFCVersion) Number() protoreflect.EnumNumber
func (XRateLimitHeadersRFCVersion) String ¶
func (x XRateLimitHeadersRFCVersion) String() string
func (XRateLimitHeadersRFCVersion) Type ¶
func (XRateLimitHeadersRFCVersion) Type() protoreflect.EnumType