Enum value maps for ComparisonFilter_Op.
var ( ComparisonFilter_Op_name = map[int32]string{ 0: "EQ", 1: "GE", 2: "LE", } ComparisonFilter_Op_value = map[string]int32{ "EQ": 0, "GE": 1, "LE": 2, } )
Enum value maps for GrpcStatusFilter_Status.
var ( GrpcStatusFilter_Status_name = map[int32]string{ 0: "OK", 1: "CANCELED", 2: "UNKNOWN", 3: "INVALID_ARGUMENT", 4: "DEADLINE_EXCEEDED", 5: "NOT_FOUND", 6: "ALREADY_EXISTS", 7: "PERMISSION_DENIED", 8: "RESOURCE_EXHAUSTED", 9: "FAILED_PRECONDITION", 10: "ABORTED", 11: "OUT_OF_RANGE", 12: "UNIMPLEMENTED", 13: "INTERNAL", 14: "UNAVAILABLE", 15: "DATA_LOSS", 16: "UNAUTHENTICATED", } GrpcStatusFilter_Status_value = map[string]int32{ "OK": 0, "CANCELED": 1, "UNKNOWN": 2, "INVALID_ARGUMENT": 3, "DEADLINE_EXCEEDED": 4, "NOT_FOUND": 5, "ALREADY_EXISTS": 6, "PERMISSION_DENIED": 7, "RESOURCE_EXHAUSTED": 8, "FAILED_PRECONDITION": 9, "ABORTED": 10, "OUT_OF_RANGE": 11, "UNIMPLEMENTED": 12, "INTERNAL": 13, "UNAVAILABLE": 14, "DATA_LOSS": 15, "UNAUTHENTICATED": 16, } )
var File_envoy_config_accesslog_v3_accesslog_proto protoreflect.FileDescriptor
type AccessLog struct { // The name of the access log implementation to instantiate. The name must // match a statically registered access log. Current built-in loggers include: // // #. "envoy.access_loggers.file" // #. "envoy.access_loggers.http_grpc" // #. "envoy.access_loggers.tcp_grpc" Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // Filter which is used to determine if the access log needs to be written. Filter *AccessLogFilter `protobuf:"bytes,2,opt,name=filter,proto3" json:"filter,omitempty"` // Custom configuration that depends on the access log being instantiated. // Built-in configurations include: // // #. "envoy.access_loggers.file": :ref:`FileAccessLog // <envoy_api_msg_extensions.access_loggers.file.v3.FileAccessLog>` // #. "envoy.access_loggers.http_grpc": :ref:`HttpGrpcAccessLogConfig // <envoy_api_msg_extensions.access_loggers.grpc.v3.HttpGrpcAccessLogConfig>` // #. "envoy.access_loggers.tcp_grpc": :ref:`TcpGrpcAccessLogConfig // <envoy_api_msg_extensions.access_loggers.grpc.v3.TcpGrpcAccessLogConfig>` // // Types that are assignable to ConfigType: // *AccessLog_TypedConfig // *AccessLog_HiddenEnvoyDeprecatedConfig ConfigType isAccessLog_ConfigType `protobuf_oneof:"config_type"` // contains filtered or unexported fields }
func (*AccessLog) Descriptor() ([]byte, []int)
Deprecated: Use AccessLog.ProtoReflect.Descriptor instead.
func (m *AccessLog) GetConfigType() isAccessLog_ConfigType
func (x *AccessLog) GetFilter() *AccessLogFilter
func (x *AccessLog) GetHiddenEnvoyDeprecatedConfig() *_struct.Struct
Deprecated: Do not use.
func (x *AccessLog) GetName() string
func (x *AccessLog) GetTypedConfig() *any.Any
func (*AccessLog) ProtoMessage()
func (x *AccessLog) ProtoReflect() protoreflect.Message
func (x *AccessLog) Reset()
func (x *AccessLog) String() string
func (m *AccessLog) Validate() error
Validate checks the field values on AccessLog with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
[#next-free-field: 13]
type AccessLogFilter struct { // Types that are assignable to FilterSpecifier: // *AccessLogFilter_StatusCodeFilter // *AccessLogFilter_DurationFilter // *AccessLogFilter_NotHealthCheckFilter // *AccessLogFilter_TraceableFilter // *AccessLogFilter_RuntimeFilter // *AccessLogFilter_AndFilter // *AccessLogFilter_OrFilter // *AccessLogFilter_HeaderFilter // *AccessLogFilter_ResponseFlagFilter // *AccessLogFilter_GrpcStatusFilter // *AccessLogFilter_ExtensionFilter // *AccessLogFilter_MetadataFilter FilterSpecifier isAccessLogFilter_FilterSpecifier `protobuf_oneof:"filter_specifier"` // contains filtered or unexported fields }
func (*AccessLogFilter) Descriptor() ([]byte, []int)
Deprecated: Use AccessLogFilter.ProtoReflect.Descriptor instead.
func (x *AccessLogFilter) GetAndFilter() *AndFilter
func (x *AccessLogFilter) GetDurationFilter() *DurationFilter
func (x *AccessLogFilter) GetExtensionFilter() *ExtensionFilter
func (m *AccessLogFilter) GetFilterSpecifier() isAccessLogFilter_FilterSpecifier
func (x *AccessLogFilter) GetGrpcStatusFilter() *GrpcStatusFilter
func (x *AccessLogFilter) GetHeaderFilter() *HeaderFilter
func (x *AccessLogFilter) GetMetadataFilter() *MetadataFilter
func (x *AccessLogFilter) GetNotHealthCheckFilter() *NotHealthCheckFilter
func (x *AccessLogFilter) GetOrFilter() *OrFilter
func (x *AccessLogFilter) GetResponseFlagFilter() *ResponseFlagFilter
func (x *AccessLogFilter) GetRuntimeFilter() *RuntimeFilter
func (x *AccessLogFilter) GetStatusCodeFilter() *StatusCodeFilter
func (x *AccessLogFilter) GetTraceableFilter() *TraceableFilter
func (*AccessLogFilter) ProtoMessage()
func (x *AccessLogFilter) ProtoReflect() protoreflect.Message
func (x *AccessLogFilter) Reset()
func (x *AccessLogFilter) String() string
func (m *AccessLogFilter) Validate() error
Validate checks the field values on AccessLogFilter with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
AccessLogFilterValidationError is the validation error returned by AccessLogFilter.Validate if the designated constraints aren't met.
type AccessLogFilterValidationError struct {
// contains filtered or unexported fields
}
func (e AccessLogFilterValidationError) Cause() error
Cause function returns cause value.
func (e AccessLogFilterValidationError) Error() string
Error satisfies the builtin error interface
func (e AccessLogFilterValidationError) ErrorName() string
ErrorName returns error name.
func (e AccessLogFilterValidationError) Field() string
Field function returns field value.
func (e AccessLogFilterValidationError) Key() bool
Key function returns key value.
func (e AccessLogFilterValidationError) Reason() string
Reason function returns reason value.
type AccessLogFilter_AndFilter struct { // And filter. AndFilter *AndFilter `protobuf:"bytes,6,opt,name=and_filter,json=andFilter,proto3,oneof"` }
type AccessLogFilter_DurationFilter struct { // Duration filter. DurationFilter *DurationFilter `protobuf:"bytes,2,opt,name=duration_filter,json=durationFilter,proto3,oneof"` }
type AccessLogFilter_ExtensionFilter struct { // Extension filter. ExtensionFilter *ExtensionFilter `protobuf:"bytes,11,opt,name=extension_filter,json=extensionFilter,proto3,oneof"` }
type AccessLogFilter_GrpcStatusFilter struct { // gRPC status filter. GrpcStatusFilter *GrpcStatusFilter `protobuf:"bytes,10,opt,name=grpc_status_filter,json=grpcStatusFilter,proto3,oneof"` }
type AccessLogFilter_HeaderFilter struct { // Header filter. HeaderFilter *HeaderFilter `protobuf:"bytes,8,opt,name=header_filter,json=headerFilter,proto3,oneof"` }
type AccessLogFilter_MetadataFilter struct { // Metadata Filter MetadataFilter *MetadataFilter `protobuf:"bytes,12,opt,name=metadata_filter,json=metadataFilter,proto3,oneof"` }
type AccessLogFilter_NotHealthCheckFilter struct { // Not health check filter. NotHealthCheckFilter *NotHealthCheckFilter `protobuf:"bytes,3,opt,name=not_health_check_filter,json=notHealthCheckFilter,proto3,oneof"` }
type AccessLogFilter_OrFilter struct { // Or filter. OrFilter *OrFilter `protobuf:"bytes,7,opt,name=or_filter,json=orFilter,proto3,oneof"` }
type AccessLogFilter_ResponseFlagFilter struct { // Response flag filter. ResponseFlagFilter *ResponseFlagFilter `protobuf:"bytes,9,opt,name=response_flag_filter,json=responseFlagFilter,proto3,oneof"` }
type AccessLogFilter_RuntimeFilter struct { // Runtime filter. RuntimeFilter *RuntimeFilter `protobuf:"bytes,5,opt,name=runtime_filter,json=runtimeFilter,proto3,oneof"` }
type AccessLogFilter_StatusCodeFilter struct { // Status code filter. StatusCodeFilter *StatusCodeFilter `protobuf:"bytes,1,opt,name=status_code_filter,json=statusCodeFilter,proto3,oneof"` }
type AccessLogFilter_TraceableFilter struct { // Traceable filter. TraceableFilter *TraceableFilter `protobuf:"bytes,4,opt,name=traceable_filter,json=traceableFilter,proto3,oneof"` }
AccessLogValidationError is the validation error returned by AccessLog.Validate if the designated constraints aren't met.
type AccessLogValidationError struct {
// contains filtered or unexported fields
}
func (e AccessLogValidationError) Cause() error
Cause function returns cause value.
func (e AccessLogValidationError) Error() string
Error satisfies the builtin error interface
func (e AccessLogValidationError) ErrorName() string
ErrorName returns error name.
func (e AccessLogValidationError) Field() string
Field function returns field value.
func (e AccessLogValidationError) Key() bool
Key function returns key value.
func (e AccessLogValidationError) Reason() string
Reason function returns reason value.
type AccessLog_HiddenEnvoyDeprecatedConfig struct { // Deprecated: Do not use. HiddenEnvoyDeprecatedConfig *_struct.Struct `protobuf:"bytes,3,opt,name=hidden_envoy_deprecated_config,json=hiddenEnvoyDeprecatedConfig,proto3,oneof"` }
type AccessLog_TypedConfig struct { TypedConfig *any.Any `protobuf:"bytes,4,opt,name=typed_config,json=typedConfig,proto3,oneof"` }
Performs a logical “and” operation on the result of each filter in filters. Filters are evaluated sequentially and if one of them returns false, the filter returns false immediately.
type AndFilter struct { Filters []*AccessLogFilter `protobuf:"bytes,1,rep,name=filters,proto3" json:"filters,omitempty"` // contains filtered or unexported fields }
func (*AndFilter) Descriptor() ([]byte, []int)
Deprecated: Use AndFilter.ProtoReflect.Descriptor instead.
func (x *AndFilter) GetFilters() []*AccessLogFilter
func (*AndFilter) ProtoMessage()
func (x *AndFilter) ProtoReflect() protoreflect.Message
func (x *AndFilter) Reset()
func (x *AndFilter) String() string
func (m *AndFilter) Validate() error
Validate checks the field values on AndFilter with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
AndFilterValidationError is the validation error returned by AndFilter.Validate if the designated constraints aren't met.
type AndFilterValidationError struct {
// contains filtered or unexported fields
}
func (e AndFilterValidationError) Cause() error
Cause function returns cause value.
func (e AndFilterValidationError) Error() string
Error satisfies the builtin error interface
func (e AndFilterValidationError) ErrorName() string
ErrorName returns error name.
func (e AndFilterValidationError) Field() string
Field function returns field value.
func (e AndFilterValidationError) Key() bool
Key function returns key value.
func (e AndFilterValidationError) Reason() string
Reason function returns reason value.
Filter on an integer comparison.
type ComparisonFilter struct { // Comparison operator. Op ComparisonFilter_Op `protobuf:"varint,1,opt,name=op,proto3,enum=envoy.config.accesslog.v3.ComparisonFilter_Op" json:"op,omitempty"` // Value to compare against. Value *v3.RuntimeUInt32 `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` // contains filtered or unexported fields }
func (*ComparisonFilter) Descriptor() ([]byte, []int)
Deprecated: Use ComparisonFilter.ProtoReflect.Descriptor instead.
func (x *ComparisonFilter) GetOp() ComparisonFilter_Op
func (x *ComparisonFilter) GetValue() *v3.RuntimeUInt32
func (*ComparisonFilter) ProtoMessage()
func (x *ComparisonFilter) ProtoReflect() protoreflect.Message
func (x *ComparisonFilter) Reset()
func (x *ComparisonFilter) String() string
func (m *ComparisonFilter) Validate() error
Validate checks the field values on ComparisonFilter with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
ComparisonFilterValidationError is the validation error returned by ComparisonFilter.Validate if the designated constraints aren't met.
type ComparisonFilterValidationError struct {
// contains filtered or unexported fields
}
func (e ComparisonFilterValidationError) Cause() error
Cause function returns cause value.
func (e ComparisonFilterValidationError) Error() string
Error satisfies the builtin error interface
func (e ComparisonFilterValidationError) ErrorName() string
ErrorName returns error name.
func (e ComparisonFilterValidationError) Field() string
Field function returns field value.
func (e ComparisonFilterValidationError) Key() bool
Key function returns key value.
func (e ComparisonFilterValidationError) Reason() string
Reason function returns reason value.
type ComparisonFilter_Op int32
const ( // = ComparisonFilter_EQ ComparisonFilter_Op = 0 // >= ComparisonFilter_GE ComparisonFilter_Op = 1 // <= ComparisonFilter_LE ComparisonFilter_Op = 2 )
func (ComparisonFilter_Op) Descriptor() protoreflect.EnumDescriptor
func (x ComparisonFilter_Op) Enum() *ComparisonFilter_Op
func (ComparisonFilter_Op) EnumDescriptor() ([]byte, []int)
Deprecated: Use ComparisonFilter_Op.Descriptor instead.
func (x ComparisonFilter_Op) Number() protoreflect.EnumNumber
func (x ComparisonFilter_Op) String() string
func (ComparisonFilter_Op) Type() protoreflect.EnumType
Filters on total request duration in milliseconds.
type DurationFilter struct { // Comparison. Comparison *ComparisonFilter `protobuf:"bytes,1,opt,name=comparison,proto3" json:"comparison,omitempty"` // contains filtered or unexported fields }
func (*DurationFilter) Descriptor() ([]byte, []int)
Deprecated: Use DurationFilter.ProtoReflect.Descriptor instead.
func (x *DurationFilter) GetComparison() *ComparisonFilter
func (*DurationFilter) ProtoMessage()
func (x *DurationFilter) ProtoReflect() protoreflect.Message
func (x *DurationFilter) Reset()
func (x *DurationFilter) String() string
func (m *DurationFilter) Validate() error
Validate checks the field values on DurationFilter with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
DurationFilterValidationError is the validation error returned by DurationFilter.Validate if the designated constraints aren't met.
type DurationFilterValidationError struct {
// contains filtered or unexported fields
}
func (e DurationFilterValidationError) Cause() error
Cause function returns cause value.
func (e DurationFilterValidationError) Error() string
Error satisfies the builtin error interface
func (e DurationFilterValidationError) ErrorName() string
ErrorName returns error name.
func (e DurationFilterValidationError) Field() string
Field function returns field value.
func (e DurationFilterValidationError) Key() bool
Key function returns key value.
func (e DurationFilterValidationError) Reason() string
Reason function returns reason value.
Extension filter is statically registered at runtime.
type ExtensionFilter struct { // The name of the filter implementation to instantiate. The name must // match a statically registered filter. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // Custom configuration that depends on the filter being instantiated. // // Types that are assignable to ConfigType: // *ExtensionFilter_TypedConfig // *ExtensionFilter_HiddenEnvoyDeprecatedConfig ConfigType isExtensionFilter_ConfigType `protobuf_oneof:"config_type"` // contains filtered or unexported fields }
func (*ExtensionFilter) Descriptor() ([]byte, []int)
Deprecated: Use ExtensionFilter.ProtoReflect.Descriptor instead.
func (m *ExtensionFilter) GetConfigType() isExtensionFilter_ConfigType
func (x *ExtensionFilter) GetHiddenEnvoyDeprecatedConfig() *_struct.Struct
Deprecated: Do not use.
func (x *ExtensionFilter) GetName() string
func (x *ExtensionFilter) GetTypedConfig() *any.Any
func (*ExtensionFilter) ProtoMessage()
func (x *ExtensionFilter) ProtoReflect() protoreflect.Message
func (x *ExtensionFilter) Reset()
func (x *ExtensionFilter) String() string
func (m *ExtensionFilter) Validate() error
Validate checks the field values on ExtensionFilter with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
ExtensionFilterValidationError is the validation error returned by ExtensionFilter.Validate if the designated constraints aren't met.
type ExtensionFilterValidationError struct {
// contains filtered or unexported fields
}
func (e ExtensionFilterValidationError) Cause() error
Cause function returns cause value.
func (e ExtensionFilterValidationError) Error() string
Error satisfies the builtin error interface
func (e ExtensionFilterValidationError) ErrorName() string
ErrorName returns error name.
func (e ExtensionFilterValidationError) Field() string
Field function returns field value.
func (e ExtensionFilterValidationError) Key() bool
Key function returns key value.
func (e ExtensionFilterValidationError) Reason() string
Reason function returns reason value.
type ExtensionFilter_HiddenEnvoyDeprecatedConfig struct { // Deprecated: Do not use. HiddenEnvoyDeprecatedConfig *_struct.Struct `protobuf:"bytes,2,opt,name=hidden_envoy_deprecated_config,json=hiddenEnvoyDeprecatedConfig,proto3,oneof"` }
type ExtensionFilter_TypedConfig struct { TypedConfig *any.Any `protobuf:"bytes,3,opt,name=typed_config,json=typedConfig,proto3,oneof"` }
Filters gRPC requests based on their response status. If a gRPC status is not provided, the filter will infer the status from the HTTP status code.
type GrpcStatusFilter struct { // Logs only responses that have any one of the gRPC statuses in this field. Statuses []GrpcStatusFilter_Status `protobuf:"varint,1,rep,packed,name=statuses,proto3,enum=envoy.config.accesslog.v3.GrpcStatusFilter_Status" json:"statuses,omitempty"` // If included and set to true, the filter will instead block all responses // with a gRPC status or inferred gRPC status enumerated in statuses, and // allow all other responses. Exclude bool `protobuf:"varint,2,opt,name=exclude,proto3" json:"exclude,omitempty"` // contains filtered or unexported fields }
func (*GrpcStatusFilter) Descriptor() ([]byte, []int)
Deprecated: Use GrpcStatusFilter.ProtoReflect.Descriptor instead.
func (x *GrpcStatusFilter) GetExclude() bool
func (x *GrpcStatusFilter) GetStatuses() []GrpcStatusFilter_Status
func (*GrpcStatusFilter) ProtoMessage()
func (x *GrpcStatusFilter) ProtoReflect() protoreflect.Message
func (x *GrpcStatusFilter) Reset()
func (x *GrpcStatusFilter) String() string
func (m *GrpcStatusFilter) Validate() error
Validate checks the field values on GrpcStatusFilter with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
GrpcStatusFilterValidationError is the validation error returned by GrpcStatusFilter.Validate if the designated constraints aren't met.
type GrpcStatusFilterValidationError struct {
// contains filtered or unexported fields
}
func (e GrpcStatusFilterValidationError) Cause() error
Cause function returns cause value.
func (e GrpcStatusFilterValidationError) Error() string
Error satisfies the builtin error interface
func (e GrpcStatusFilterValidationError) ErrorName() string
ErrorName returns error name.
func (e GrpcStatusFilterValidationError) Field() string
Field function returns field value.
func (e GrpcStatusFilterValidationError) Key() bool
Key function returns key value.
func (e GrpcStatusFilterValidationError) Reason() string
Reason function returns reason value.
type GrpcStatusFilter_Status int32
const ( GrpcStatusFilter_OK GrpcStatusFilter_Status = 0 GrpcStatusFilter_CANCELED GrpcStatusFilter_Status = 1 GrpcStatusFilter_UNKNOWN GrpcStatusFilter_Status = 2 GrpcStatusFilter_INVALID_ARGUMENT GrpcStatusFilter_Status = 3 GrpcStatusFilter_DEADLINE_EXCEEDED GrpcStatusFilter_Status = 4 GrpcStatusFilter_NOT_FOUND GrpcStatusFilter_Status = 5 GrpcStatusFilter_ALREADY_EXISTS GrpcStatusFilter_Status = 6 GrpcStatusFilter_PERMISSION_DENIED GrpcStatusFilter_Status = 7 GrpcStatusFilter_RESOURCE_EXHAUSTED GrpcStatusFilter_Status = 8 GrpcStatusFilter_FAILED_PRECONDITION GrpcStatusFilter_Status = 9 GrpcStatusFilter_ABORTED GrpcStatusFilter_Status = 10 GrpcStatusFilter_OUT_OF_RANGE GrpcStatusFilter_Status = 11 GrpcStatusFilter_UNIMPLEMENTED GrpcStatusFilter_Status = 12 GrpcStatusFilter_INTERNAL GrpcStatusFilter_Status = 13 GrpcStatusFilter_UNAVAILABLE GrpcStatusFilter_Status = 14 GrpcStatusFilter_DATA_LOSS GrpcStatusFilter_Status = 15 GrpcStatusFilter_UNAUTHENTICATED GrpcStatusFilter_Status = 16 )
func (GrpcStatusFilter_Status) Descriptor() protoreflect.EnumDescriptor
func (x GrpcStatusFilter_Status) Enum() *GrpcStatusFilter_Status
func (GrpcStatusFilter_Status) EnumDescriptor() ([]byte, []int)
Deprecated: Use GrpcStatusFilter_Status.Descriptor instead.
func (x GrpcStatusFilter_Status) Number() protoreflect.EnumNumber
func (x GrpcStatusFilter_Status) String() string
func (GrpcStatusFilter_Status) Type() protoreflect.EnumType
Filters requests based on the presence or value of a request header.
type HeaderFilter struct { // Only requests with a header which matches the specified HeaderMatcher will // pass the filter check. Header *v32.HeaderMatcher `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"` // contains filtered or unexported fields }
func (*HeaderFilter) Descriptor() ([]byte, []int)
Deprecated: Use HeaderFilter.ProtoReflect.Descriptor instead.
func (x *HeaderFilter) GetHeader() *v32.HeaderMatcher
func (*HeaderFilter) ProtoMessage()
func (x *HeaderFilter) ProtoReflect() protoreflect.Message
func (x *HeaderFilter) Reset()
func (x *HeaderFilter) String() string
func (m *HeaderFilter) Validate() error
Validate checks the field values on HeaderFilter with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
HeaderFilterValidationError is the validation error returned by HeaderFilter.Validate if the designated constraints aren't met.
type HeaderFilterValidationError struct {
// contains filtered or unexported fields
}
func (e HeaderFilterValidationError) Cause() error
Cause function returns cause value.
func (e HeaderFilterValidationError) Error() string
Error satisfies the builtin error interface
func (e HeaderFilterValidationError) ErrorName() string
ErrorName returns error name.
func (e HeaderFilterValidationError) Field() string
Field function returns field value.
func (e HeaderFilterValidationError) Key() bool
Key function returns key value.
func (e HeaderFilterValidationError) Reason() string
Reason function returns reason value.
Filters based on matching dynamic metadata. If the matcher path and key correspond to an existing key in dynamic metadata, the request is logged only if the matcher value is equal to the metadata value. If the matcher path and key *do not* correspond to an existing key in dynamic metadata, the request is logged only if match_if_key_not_found is "true" or unset.
type MetadataFilter struct { // Matcher to check metadata for specified value. For example, to match on the // access_log_hint metadata, set the filter to "envoy.common" and the path to // "access_log_hint", and the value to "true". Matcher *v33.MetadataMatcher `protobuf:"bytes,1,opt,name=matcher,proto3" json:"matcher,omitempty"` // Default result if the key does not exist in dynamic metadata: if unset or // true, then log; if false, then don't log. MatchIfKeyNotFound *wrappers.BoolValue `protobuf:"bytes,2,opt,name=match_if_key_not_found,json=matchIfKeyNotFound,proto3" json:"match_if_key_not_found,omitempty"` // contains filtered or unexported fields }
func (*MetadataFilter) Descriptor() ([]byte, []int)
Deprecated: Use MetadataFilter.ProtoReflect.Descriptor instead.
func (x *MetadataFilter) GetMatchIfKeyNotFound() *wrappers.BoolValue
func (x *MetadataFilter) GetMatcher() *v33.MetadataMatcher
func (*MetadataFilter) ProtoMessage()
func (x *MetadataFilter) ProtoReflect() protoreflect.Message
func (x *MetadataFilter) Reset()
func (x *MetadataFilter) String() string
func (m *MetadataFilter) Validate() error
Validate checks the field values on MetadataFilter with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
MetadataFilterValidationError is the validation error returned by MetadataFilter.Validate if the designated constraints aren't met.
type MetadataFilterValidationError struct {
// contains filtered or unexported fields
}
func (e MetadataFilterValidationError) Cause() error
Cause function returns cause value.
func (e MetadataFilterValidationError) Error() string
Error satisfies the builtin error interface
func (e MetadataFilterValidationError) ErrorName() string
ErrorName returns error name.
func (e MetadataFilterValidationError) Field() string
Field function returns field value.
func (e MetadataFilterValidationError) Key() bool
Key function returns key value.
func (e MetadataFilterValidationError) Reason() string
Reason function returns reason value.
Filters for requests that are not health check requests. A health check request is marked by the health check filter.
type NotHealthCheckFilter struct {
// contains filtered or unexported fields
}
func (*NotHealthCheckFilter) Descriptor() ([]byte, []int)
Deprecated: Use NotHealthCheckFilter.ProtoReflect.Descriptor instead.
func (*NotHealthCheckFilter) ProtoMessage()
func (x *NotHealthCheckFilter) ProtoReflect() protoreflect.Message
func (x *NotHealthCheckFilter) Reset()
func (x *NotHealthCheckFilter) String() string
func (m *NotHealthCheckFilter) Validate() error
Validate checks the field values on NotHealthCheckFilter with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
NotHealthCheckFilterValidationError is the validation error returned by NotHealthCheckFilter.Validate if the designated constraints aren't met.
type NotHealthCheckFilterValidationError struct {
// contains filtered or unexported fields
}
func (e NotHealthCheckFilterValidationError) Cause() error
Cause function returns cause value.
func (e NotHealthCheckFilterValidationError) Error() string
Error satisfies the builtin error interface
func (e NotHealthCheckFilterValidationError) ErrorName() string
ErrorName returns error name.
func (e NotHealthCheckFilterValidationError) Field() string
Field function returns field value.
func (e NotHealthCheckFilterValidationError) Key() bool
Key function returns key value.
func (e NotHealthCheckFilterValidationError) Reason() string
Reason function returns reason value.
Performs a logical “or” operation on the result of each individual filter. Filters are evaluated sequentially and if one of them returns true, the filter returns true immediately.
type OrFilter struct { Filters []*AccessLogFilter `protobuf:"bytes,2,rep,name=filters,proto3" json:"filters,omitempty"` // contains filtered or unexported fields }
func (*OrFilter) Descriptor() ([]byte, []int)
Deprecated: Use OrFilter.ProtoReflect.Descriptor instead.
func (x *OrFilter) GetFilters() []*AccessLogFilter
func (*OrFilter) ProtoMessage()
func (x *OrFilter) ProtoReflect() protoreflect.Message
func (x *OrFilter) Reset()
func (x *OrFilter) String() string
func (m *OrFilter) Validate() error
Validate checks the field values on OrFilter with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
OrFilterValidationError is the validation error returned by OrFilter.Validate if the designated constraints aren't met.
type OrFilterValidationError struct {
// contains filtered or unexported fields
}
func (e OrFilterValidationError) Cause() error
Cause function returns cause value.
func (e OrFilterValidationError) Error() string
Error satisfies the builtin error interface
func (e OrFilterValidationError) ErrorName() string
ErrorName returns error name.
func (e OrFilterValidationError) Field() string
Field function returns field value.
func (e OrFilterValidationError) Key() bool
Key function returns key value.
func (e OrFilterValidationError) Reason() string
Reason function returns reason value.
Filters requests that received responses with an Envoy response flag set. A list of the response flags can be found in the access log formatter :ref:`documentation<config_access_log_format_response_flags>`.
type ResponseFlagFilter struct { // Only responses with the any of the flags listed in this field will be // logged. This field is optional. If it is not specified, then any response // flag will pass the filter check. Flags []string `protobuf:"bytes,1,rep,name=flags,proto3" json:"flags,omitempty"` // contains filtered or unexported fields }
func (*ResponseFlagFilter) Descriptor() ([]byte, []int)
Deprecated: Use ResponseFlagFilter.ProtoReflect.Descriptor instead.
func (x *ResponseFlagFilter) GetFlags() []string
func (*ResponseFlagFilter) ProtoMessage()
func (x *ResponseFlagFilter) ProtoReflect() protoreflect.Message
func (x *ResponseFlagFilter) Reset()
func (x *ResponseFlagFilter) String() string
func (m *ResponseFlagFilter) Validate() error
Validate checks the field values on ResponseFlagFilter with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
ResponseFlagFilterValidationError is the validation error returned by ResponseFlagFilter.Validate if the designated constraints aren't met.
type ResponseFlagFilterValidationError struct {
// contains filtered or unexported fields
}
func (e ResponseFlagFilterValidationError) Cause() error
Cause function returns cause value.
func (e ResponseFlagFilterValidationError) Error() string
Error satisfies the builtin error interface
func (e ResponseFlagFilterValidationError) ErrorName() string
ErrorName returns error name.
func (e ResponseFlagFilterValidationError) Field() string
Field function returns field value.
func (e ResponseFlagFilterValidationError) Key() bool
Key function returns key value.
func (e ResponseFlagFilterValidationError) Reason() string
Reason function returns reason value.
Filters for random sampling of requests.
type RuntimeFilter struct { // Runtime key to get an optional overridden numerator for use in the // *percent_sampled* field. If found in runtime, this value will replace the // default numerator. RuntimeKey string `protobuf:"bytes,1,opt,name=runtime_key,json=runtimeKey,proto3" json:"runtime_key,omitempty"` // The default sampling percentage. If not specified, defaults to 0% with // denominator of 100. PercentSampled *v31.FractionalPercent `protobuf:"bytes,2,opt,name=percent_sampled,json=percentSampled,proto3" json:"percent_sampled,omitempty"` // By default, sampling pivots on the header // :ref:`x-request-id<config_http_conn_man_headers_x-request-id>` being // present. If :ref:`x-request-id<config_http_conn_man_headers_x-request-id>` // is present, the filter will consistently sample across multiple hosts based // on the runtime key value and the value extracted from // :ref:`x-request-id<config_http_conn_man_headers_x-request-id>`. If it is // missing, or *use_independent_randomness* is set to true, the filter will // randomly sample based on the runtime key value alone. // *use_independent_randomness* can be used for logging kill switches within // complex nested :ref:`AndFilter // <envoy_api_msg_config.accesslog.v3.AndFilter>` and :ref:`OrFilter // <envoy_api_msg_config.accesslog.v3.OrFilter>` blocks that are easier to // reason about from a probability perspective (i.e., setting to true will // cause the filter to behave like an independent random variable when // composed within logical operator filters). UseIndependentRandomness bool `protobuf:"varint,3,opt,name=use_independent_randomness,json=useIndependentRandomness,proto3" json:"use_independent_randomness,omitempty"` // contains filtered or unexported fields }
func (*RuntimeFilter) Descriptor() ([]byte, []int)
Deprecated: Use RuntimeFilter.ProtoReflect.Descriptor instead.
func (x *RuntimeFilter) GetPercentSampled() *v31.FractionalPercent
func (x *RuntimeFilter) GetRuntimeKey() string
func (x *RuntimeFilter) GetUseIndependentRandomness() bool
func (*RuntimeFilter) ProtoMessage()
func (x *RuntimeFilter) ProtoReflect() protoreflect.Message
func (x *RuntimeFilter) Reset()
func (x *RuntimeFilter) String() string
func (m *RuntimeFilter) Validate() error
Validate checks the field values on RuntimeFilter with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
RuntimeFilterValidationError is the validation error returned by RuntimeFilter.Validate if the designated constraints aren't met.
type RuntimeFilterValidationError struct {
// contains filtered or unexported fields
}
func (e RuntimeFilterValidationError) Cause() error
Cause function returns cause value.
func (e RuntimeFilterValidationError) Error() string
Error satisfies the builtin error interface
func (e RuntimeFilterValidationError) ErrorName() string
ErrorName returns error name.
func (e RuntimeFilterValidationError) Field() string
Field function returns field value.
func (e RuntimeFilterValidationError) Key() bool
Key function returns key value.
func (e RuntimeFilterValidationError) Reason() string
Reason function returns reason value.
Filters on HTTP response/status code.
type StatusCodeFilter struct { // Comparison. Comparison *ComparisonFilter `protobuf:"bytes,1,opt,name=comparison,proto3" json:"comparison,omitempty"` // contains filtered or unexported fields }
func (*StatusCodeFilter) Descriptor() ([]byte, []int)
Deprecated: Use StatusCodeFilter.ProtoReflect.Descriptor instead.
func (x *StatusCodeFilter) GetComparison() *ComparisonFilter
func (*StatusCodeFilter) ProtoMessage()
func (x *StatusCodeFilter) ProtoReflect() protoreflect.Message
func (x *StatusCodeFilter) Reset()
func (x *StatusCodeFilter) String() string
func (m *StatusCodeFilter) Validate() error
Validate checks the field values on StatusCodeFilter with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
StatusCodeFilterValidationError is the validation error returned by StatusCodeFilter.Validate if the designated constraints aren't met.
type StatusCodeFilterValidationError struct {
// contains filtered or unexported fields
}
func (e StatusCodeFilterValidationError) Cause() error
Cause function returns cause value.
func (e StatusCodeFilterValidationError) Error() string
Error satisfies the builtin error interface
func (e StatusCodeFilterValidationError) ErrorName() string
ErrorName returns error name.
func (e StatusCodeFilterValidationError) Field() string
Field function returns field value.
func (e StatusCodeFilterValidationError) Key() bool
Key function returns key value.
func (e StatusCodeFilterValidationError) Reason() string
Reason function returns reason value.
Filters for requests that are traceable. See the tracing overview for more information on how a request becomes traceable.
type TraceableFilter struct {
// contains filtered or unexported fields
}
func (*TraceableFilter) Descriptor() ([]byte, []int)
Deprecated: Use TraceableFilter.ProtoReflect.Descriptor instead.
func (*TraceableFilter) ProtoMessage()
func (x *TraceableFilter) ProtoReflect() protoreflect.Message
func (x *TraceableFilter) Reset()
func (x *TraceableFilter) String() string
func (m *TraceableFilter) Validate() error
Validate checks the field values on TraceableFilter with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
TraceableFilterValidationError is the validation error returned by TraceableFilter.Validate if the designated constraints aren't met.
type TraceableFilterValidationError struct {
// contains filtered or unexported fields
}
func (e TraceableFilterValidationError) Cause() error
Cause function returns cause value.
func (e TraceableFilterValidationError) Error() string
Error satisfies the builtin error interface
func (e TraceableFilterValidationError) ErrorName() string
ErrorName returns error name.
func (e TraceableFilterValidationError) Field() string
Field function returns field value.
func (e TraceableFilterValidationError) Key() bool
Key function returns key value.
func (e TraceableFilterValidationError) Reason() string
Reason function returns reason value.