Documentation ¶
Index ¶
- Variables
- type CommonGrpcAccessLogConfig
- func (*CommonGrpcAccessLogConfig) Descriptor() ([]byte, []int)deprecated
- func (x *CommonGrpcAccessLogConfig) GetBufferFlushInterval() *duration.Duration
- func (x *CommonGrpcAccessLogConfig) GetBufferSizeBytes() *wrappers.UInt32Value
- func (x *CommonGrpcAccessLogConfig) GetCustomTags() []*v31.CustomTag
- func (x *CommonGrpcAccessLogConfig) GetFilterStateObjectsToLog() []string
- func (x *CommonGrpcAccessLogConfig) GetGrpcService() *v3.GrpcService
- func (x *CommonGrpcAccessLogConfig) GetGrpcStreamRetryPolicy() *v3.RetryPolicy
- func (x *CommonGrpcAccessLogConfig) GetLogName() string
- func (x *CommonGrpcAccessLogConfig) GetTransportApiVersion() v3.ApiVersion
- func (*CommonGrpcAccessLogConfig) ProtoMessage()
- func (x *CommonGrpcAccessLogConfig) ProtoReflect() protoreflect.Message
- func (x *CommonGrpcAccessLogConfig) Reset()
- func (x *CommonGrpcAccessLogConfig) String() string
- func (m *CommonGrpcAccessLogConfig) Validate() error
- func (m *CommonGrpcAccessLogConfig) ValidateAll() error
- type CommonGrpcAccessLogConfigMultiError
- type CommonGrpcAccessLogConfigValidationError
- func (e CommonGrpcAccessLogConfigValidationError) Cause() error
- func (e CommonGrpcAccessLogConfigValidationError) Error() string
- func (e CommonGrpcAccessLogConfigValidationError) ErrorName() string
- func (e CommonGrpcAccessLogConfigValidationError) Field() string
- func (e CommonGrpcAccessLogConfigValidationError) Key() bool
- func (e CommonGrpcAccessLogConfigValidationError) Reason() string
- type HttpGrpcAccessLogConfig
- func (*HttpGrpcAccessLogConfig) Descriptor() ([]byte, []int)deprecated
- func (x *HttpGrpcAccessLogConfig) GetAdditionalRequestHeadersToLog() []string
- func (x *HttpGrpcAccessLogConfig) GetAdditionalResponseHeadersToLog() []string
- func (x *HttpGrpcAccessLogConfig) GetAdditionalResponseTrailersToLog() []string
- func (x *HttpGrpcAccessLogConfig) GetCommonConfig() *CommonGrpcAccessLogConfig
- func (*HttpGrpcAccessLogConfig) ProtoMessage()
- func (x *HttpGrpcAccessLogConfig) ProtoReflect() protoreflect.Message
- func (x *HttpGrpcAccessLogConfig) Reset()
- func (x *HttpGrpcAccessLogConfig) String() string
- func (m *HttpGrpcAccessLogConfig) Validate() error
- func (m *HttpGrpcAccessLogConfig) ValidateAll() error
- type HttpGrpcAccessLogConfigMultiError
- type HttpGrpcAccessLogConfigValidationError
- func (e HttpGrpcAccessLogConfigValidationError) Cause() error
- func (e HttpGrpcAccessLogConfigValidationError) Error() string
- func (e HttpGrpcAccessLogConfigValidationError) ErrorName() string
- func (e HttpGrpcAccessLogConfigValidationError) Field() string
- func (e HttpGrpcAccessLogConfigValidationError) Key() bool
- func (e HttpGrpcAccessLogConfigValidationError) Reason() string
- type TcpGrpcAccessLogConfig
- func (*TcpGrpcAccessLogConfig) Descriptor() ([]byte, []int)deprecated
- func (x *TcpGrpcAccessLogConfig) GetCommonConfig() *CommonGrpcAccessLogConfig
- func (*TcpGrpcAccessLogConfig) ProtoMessage()
- func (x *TcpGrpcAccessLogConfig) ProtoReflect() protoreflect.Message
- func (x *TcpGrpcAccessLogConfig) Reset()
- func (x *TcpGrpcAccessLogConfig) String() string
- func (m *TcpGrpcAccessLogConfig) Validate() error
- func (m *TcpGrpcAccessLogConfig) ValidateAll() error
- type TcpGrpcAccessLogConfigMultiError
- type TcpGrpcAccessLogConfigValidationError
- func (e TcpGrpcAccessLogConfigValidationError) Cause() error
- func (e TcpGrpcAccessLogConfigValidationError) Error() string
- func (e TcpGrpcAccessLogConfigValidationError) ErrorName() string
- func (e TcpGrpcAccessLogConfigValidationError) Field() string
- func (e TcpGrpcAccessLogConfigValidationError) Key() bool
- func (e TcpGrpcAccessLogConfigValidationError) Reason() string
Constants ¶
This section is empty.
Variables ¶
var File_envoy_extensions_access_loggers_grpc_v3_als_proto protoreflect.FileDescriptor
Functions ¶
This section is empty.
Types ¶
type CommonGrpcAccessLogConfig ¶
type CommonGrpcAccessLogConfig struct { // The friendly name of the access log to be returned in :ref:`StreamAccessLogsMessage.Identifier // <envoy_v3_api_msg_service.accesslog.v3.StreamAccessLogsMessage.Identifier>`. This allows the // access log server to differentiate between different access logs coming from the same Envoy. LogName string `protobuf:"bytes,1,opt,name=log_name,json=logName,proto3" json:"log_name,omitempty"` // The gRPC service for the access log service. GrpcService *v3.GrpcService `protobuf:"bytes,2,opt,name=grpc_service,json=grpcService,proto3" json:"grpc_service,omitempty"` // API version for access logs service transport protocol. This describes the access logs service // gRPC endpoint and version of messages used on the wire. TransportApiVersion v3.ApiVersion `` /* 158-byte string literal not displayed */ // Interval for flushing access logs to the gRPC stream. Logger will flush requests every time // this interval is elapsed, or when batch size limit is hit, whichever comes first. Defaults to // 1 second. BufferFlushInterval *duration.Duration `protobuf:"bytes,3,opt,name=buffer_flush_interval,json=bufferFlushInterval,proto3" json:"buffer_flush_interval,omitempty"` // Soft size limit in bytes for access log entries buffer. Logger will buffer requests until // this limit it hit, or every time flush interval is elapsed, whichever comes first. Setting it // to zero effectively disables the batching. Defaults to 16384. BufferSizeBytes *wrappers.UInt32Value `protobuf:"bytes,4,opt,name=buffer_size_bytes,json=bufferSizeBytes,proto3" json:"buffer_size_bytes,omitempty"` // Additional filter state objects to log in :ref:`filter_state_objects // <envoy_v3_api_field_data.accesslog.v3.AccessLogCommon.filter_state_objects>`. // Logger will call `FilterState::Object::serializeAsProto` to serialize the filter state object. FilterStateObjectsToLog []string `` /* 136-byte string literal not displayed */ // Sets the retry policy when the establishment of a gRPC stream fails. // If the stream succeeds at least once in establishing itself, // no retry will be performed no matter what gRPC status is received. // Note that only :ref:`num_retries <envoy_v3_api_field_config.core.v3.RetryPolicy.num_retries>` // will be used in this configuration. This feature is used only when you are using // :ref:`Envoy gRPC client <envoy_v3_api_field_config.core.v3.GrpcService.envoy_grpc>`. GrpcStreamRetryPolicy *v3.RetryPolicy `` /* 128-byte string literal not displayed */ // A list of custom tags with unique tag name to create tags for the logs. CustomTags []*v31.CustomTag `protobuf:"bytes,8,rep,name=custom_tags,json=customTags,proto3" json:"custom_tags,omitempty"` // contains filtered or unexported fields }
Common configuration for gRPC access logs. [#next-free-field: 9]
func (*CommonGrpcAccessLogConfig) Descriptor
deprecated
func (*CommonGrpcAccessLogConfig) Descriptor() ([]byte, []int)
Deprecated: Use CommonGrpcAccessLogConfig.ProtoReflect.Descriptor instead.
func (*CommonGrpcAccessLogConfig) GetBufferFlushInterval ¶
func (x *CommonGrpcAccessLogConfig) GetBufferFlushInterval() *duration.Duration
func (*CommonGrpcAccessLogConfig) GetBufferSizeBytes ¶
func (x *CommonGrpcAccessLogConfig) GetBufferSizeBytes() *wrappers.UInt32Value
func (*CommonGrpcAccessLogConfig) GetCustomTags ¶
func (x *CommonGrpcAccessLogConfig) GetCustomTags() []*v31.CustomTag
func (*CommonGrpcAccessLogConfig) GetFilterStateObjectsToLog ¶
func (x *CommonGrpcAccessLogConfig) GetFilterStateObjectsToLog() []string
func (*CommonGrpcAccessLogConfig) GetGrpcService ¶
func (x *CommonGrpcAccessLogConfig) GetGrpcService() *v3.GrpcService
func (*CommonGrpcAccessLogConfig) GetGrpcStreamRetryPolicy ¶
func (x *CommonGrpcAccessLogConfig) GetGrpcStreamRetryPolicy() *v3.RetryPolicy
func (*CommonGrpcAccessLogConfig) GetLogName ¶
func (x *CommonGrpcAccessLogConfig) GetLogName() string
func (*CommonGrpcAccessLogConfig) GetTransportApiVersion ¶
func (x *CommonGrpcAccessLogConfig) GetTransportApiVersion() v3.ApiVersion
func (*CommonGrpcAccessLogConfig) ProtoMessage ¶
func (*CommonGrpcAccessLogConfig) ProtoMessage()
func (*CommonGrpcAccessLogConfig) ProtoReflect ¶
func (x *CommonGrpcAccessLogConfig) ProtoReflect() protoreflect.Message
func (*CommonGrpcAccessLogConfig) Reset ¶
func (x *CommonGrpcAccessLogConfig) Reset()
func (*CommonGrpcAccessLogConfig) String ¶
func (x *CommonGrpcAccessLogConfig) String() string
func (*CommonGrpcAccessLogConfig) Validate ¶
func (m *CommonGrpcAccessLogConfig) Validate() error
Validate checks the field values on CommonGrpcAccessLogConfig with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.
func (*CommonGrpcAccessLogConfig) ValidateAll ¶
func (m *CommonGrpcAccessLogConfig) ValidateAll() error
ValidateAll checks the field values on CommonGrpcAccessLogConfig with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CommonGrpcAccessLogConfigMultiError, or nil if none found.
type CommonGrpcAccessLogConfigMultiError ¶
type CommonGrpcAccessLogConfigMultiError []error
CommonGrpcAccessLogConfigMultiError is an error wrapping multiple validation errors returned by CommonGrpcAccessLogConfig.ValidateAll() if the designated constraints aren't met.
func (CommonGrpcAccessLogConfigMultiError) AllErrors ¶
func (m CommonGrpcAccessLogConfigMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (CommonGrpcAccessLogConfigMultiError) Error ¶
func (m CommonGrpcAccessLogConfigMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
type CommonGrpcAccessLogConfigValidationError ¶
type CommonGrpcAccessLogConfigValidationError struct {
// contains filtered or unexported fields
}
CommonGrpcAccessLogConfigValidationError is the validation error returned by CommonGrpcAccessLogConfig.Validate if the designated constraints aren't met.
func (CommonGrpcAccessLogConfigValidationError) Cause ¶
func (e CommonGrpcAccessLogConfigValidationError) Cause() error
Cause function returns cause value.
func (CommonGrpcAccessLogConfigValidationError) Error ¶
func (e CommonGrpcAccessLogConfigValidationError) Error() string
Error satisfies the builtin error interface
func (CommonGrpcAccessLogConfigValidationError) ErrorName ¶
func (e CommonGrpcAccessLogConfigValidationError) ErrorName() string
ErrorName returns error name.
func (CommonGrpcAccessLogConfigValidationError) Field ¶
func (e CommonGrpcAccessLogConfigValidationError) Field() string
Field function returns field value.
func (CommonGrpcAccessLogConfigValidationError) Key ¶
func (e CommonGrpcAccessLogConfigValidationError) Key() bool
Key function returns key value.
func (CommonGrpcAccessLogConfigValidationError) Reason ¶
func (e CommonGrpcAccessLogConfigValidationError) Reason() string
Reason function returns reason value.
type HttpGrpcAccessLogConfig ¶
type HttpGrpcAccessLogConfig struct { CommonConfig *CommonGrpcAccessLogConfig `protobuf:"bytes,1,opt,name=common_config,json=commonConfig,proto3" json:"common_config,omitempty"` // Additional request headers to log in :ref:`HTTPRequestProperties.request_headers // <envoy_v3_api_field_data.accesslog.v3.HTTPRequestProperties.request_headers>`. AdditionalRequestHeadersToLog []string `` /* 154-byte string literal not displayed */ // Additional response headers to log in :ref:`HTTPResponseProperties.response_headers // <envoy_v3_api_field_data.accesslog.v3.HTTPResponseProperties.response_headers>`. AdditionalResponseHeadersToLog []string `` /* 157-byte string literal not displayed */ // Additional response trailers to log in :ref:`HTTPResponseProperties.response_trailers // <envoy_v3_api_field_data.accesslog.v3.HTTPResponseProperties.response_trailers>`. AdditionalResponseTrailersToLog []string `` /* 160-byte string literal not displayed */ // contains filtered or unexported fields }
Configuration for the built-in *envoy.access_loggers.http_grpc* :ref:`AccessLog <envoy_v3_api_msg_config.accesslog.v3.AccessLog>`. This configuration will populate :ref:`StreamAccessLogsMessage.http_logs <envoy_v3_api_field_service.accesslog.v3.StreamAccessLogsMessage.http_logs>`. [#extension: envoy.access_loggers.http_grpc]
func (*HttpGrpcAccessLogConfig) Descriptor
deprecated
func (*HttpGrpcAccessLogConfig) Descriptor() ([]byte, []int)
Deprecated: Use HttpGrpcAccessLogConfig.ProtoReflect.Descriptor instead.
func (*HttpGrpcAccessLogConfig) GetAdditionalRequestHeadersToLog ¶
func (x *HttpGrpcAccessLogConfig) GetAdditionalRequestHeadersToLog() []string
func (*HttpGrpcAccessLogConfig) GetAdditionalResponseHeadersToLog ¶
func (x *HttpGrpcAccessLogConfig) GetAdditionalResponseHeadersToLog() []string
func (*HttpGrpcAccessLogConfig) GetAdditionalResponseTrailersToLog ¶
func (x *HttpGrpcAccessLogConfig) GetAdditionalResponseTrailersToLog() []string
func (*HttpGrpcAccessLogConfig) GetCommonConfig ¶
func (x *HttpGrpcAccessLogConfig) GetCommonConfig() *CommonGrpcAccessLogConfig
func (*HttpGrpcAccessLogConfig) ProtoMessage ¶
func (*HttpGrpcAccessLogConfig) ProtoMessage()
func (*HttpGrpcAccessLogConfig) ProtoReflect ¶
func (x *HttpGrpcAccessLogConfig) ProtoReflect() protoreflect.Message
func (*HttpGrpcAccessLogConfig) Reset ¶
func (x *HttpGrpcAccessLogConfig) Reset()
func (*HttpGrpcAccessLogConfig) String ¶
func (x *HttpGrpcAccessLogConfig) String() string
func (*HttpGrpcAccessLogConfig) Validate ¶
func (m *HttpGrpcAccessLogConfig) Validate() error
Validate checks the field values on HttpGrpcAccessLogConfig with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.
func (*HttpGrpcAccessLogConfig) ValidateAll ¶
func (m *HttpGrpcAccessLogConfig) ValidateAll() error
ValidateAll checks the field values on HttpGrpcAccessLogConfig with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in HttpGrpcAccessLogConfigMultiError, or nil if none found.
type HttpGrpcAccessLogConfigMultiError ¶
type HttpGrpcAccessLogConfigMultiError []error
HttpGrpcAccessLogConfigMultiError is an error wrapping multiple validation errors returned by HttpGrpcAccessLogConfig.ValidateAll() if the designated constraints aren't met.
func (HttpGrpcAccessLogConfigMultiError) AllErrors ¶
func (m HttpGrpcAccessLogConfigMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (HttpGrpcAccessLogConfigMultiError) Error ¶
func (m HttpGrpcAccessLogConfigMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
type HttpGrpcAccessLogConfigValidationError ¶
type HttpGrpcAccessLogConfigValidationError struct {
// contains filtered or unexported fields
}
HttpGrpcAccessLogConfigValidationError is the validation error returned by HttpGrpcAccessLogConfig.Validate if the designated constraints aren't met.
func (HttpGrpcAccessLogConfigValidationError) Cause ¶
func (e HttpGrpcAccessLogConfigValidationError) Cause() error
Cause function returns cause value.
func (HttpGrpcAccessLogConfigValidationError) Error ¶
func (e HttpGrpcAccessLogConfigValidationError) Error() string
Error satisfies the builtin error interface
func (HttpGrpcAccessLogConfigValidationError) ErrorName ¶
func (e HttpGrpcAccessLogConfigValidationError) ErrorName() string
ErrorName returns error name.
func (HttpGrpcAccessLogConfigValidationError) Field ¶
func (e HttpGrpcAccessLogConfigValidationError) Field() string
Field function returns field value.
func (HttpGrpcAccessLogConfigValidationError) Key ¶
func (e HttpGrpcAccessLogConfigValidationError) Key() bool
Key function returns key value.
func (HttpGrpcAccessLogConfigValidationError) Reason ¶
func (e HttpGrpcAccessLogConfigValidationError) Reason() string
Reason function returns reason value.
type TcpGrpcAccessLogConfig ¶
type TcpGrpcAccessLogConfig struct { CommonConfig *CommonGrpcAccessLogConfig `protobuf:"bytes,1,opt,name=common_config,json=commonConfig,proto3" json:"common_config,omitempty"` // contains filtered or unexported fields }
Configuration for the built-in *envoy.access_loggers.tcp_grpc* type. This configuration will populate *StreamAccessLogsMessage.tcp_logs*. [#extension: envoy.access_loggers.tcp_grpc]
func (*TcpGrpcAccessLogConfig) Descriptor
deprecated
func (*TcpGrpcAccessLogConfig) Descriptor() ([]byte, []int)
Deprecated: Use TcpGrpcAccessLogConfig.ProtoReflect.Descriptor instead.
func (*TcpGrpcAccessLogConfig) GetCommonConfig ¶
func (x *TcpGrpcAccessLogConfig) GetCommonConfig() *CommonGrpcAccessLogConfig
func (*TcpGrpcAccessLogConfig) ProtoMessage ¶
func (*TcpGrpcAccessLogConfig) ProtoMessage()
func (*TcpGrpcAccessLogConfig) ProtoReflect ¶
func (x *TcpGrpcAccessLogConfig) ProtoReflect() protoreflect.Message
func (*TcpGrpcAccessLogConfig) Reset ¶
func (x *TcpGrpcAccessLogConfig) Reset()
func (*TcpGrpcAccessLogConfig) String ¶
func (x *TcpGrpcAccessLogConfig) String() string
func (*TcpGrpcAccessLogConfig) Validate ¶
func (m *TcpGrpcAccessLogConfig) Validate() error
Validate checks the field values on TcpGrpcAccessLogConfig with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.
func (*TcpGrpcAccessLogConfig) ValidateAll ¶
func (m *TcpGrpcAccessLogConfig) ValidateAll() error
ValidateAll checks the field values on TcpGrpcAccessLogConfig with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TcpGrpcAccessLogConfigMultiError, or nil if none found.
type TcpGrpcAccessLogConfigMultiError ¶
type TcpGrpcAccessLogConfigMultiError []error
TcpGrpcAccessLogConfigMultiError is an error wrapping multiple validation errors returned by TcpGrpcAccessLogConfig.ValidateAll() if the designated constraints aren't met.
func (TcpGrpcAccessLogConfigMultiError) AllErrors ¶
func (m TcpGrpcAccessLogConfigMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (TcpGrpcAccessLogConfigMultiError) Error ¶
func (m TcpGrpcAccessLogConfigMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
type TcpGrpcAccessLogConfigValidationError ¶
type TcpGrpcAccessLogConfigValidationError struct {
// contains filtered or unexported fields
}
TcpGrpcAccessLogConfigValidationError is the validation error returned by TcpGrpcAccessLogConfig.Validate if the designated constraints aren't met.
func (TcpGrpcAccessLogConfigValidationError) Cause ¶
func (e TcpGrpcAccessLogConfigValidationError) Cause() error
Cause function returns cause value.
func (TcpGrpcAccessLogConfigValidationError) Error ¶
func (e TcpGrpcAccessLogConfigValidationError) Error() string
Error satisfies the builtin error interface
func (TcpGrpcAccessLogConfigValidationError) ErrorName ¶
func (e TcpGrpcAccessLogConfigValidationError) ErrorName() string
ErrorName returns error name.
func (TcpGrpcAccessLogConfigValidationError) Field ¶
func (e TcpGrpcAccessLogConfigValidationError) Field() string
Field function returns field value.
func (TcpGrpcAccessLogConfigValidationError) Key ¶
func (e TcpGrpcAccessLogConfigValidationError) Key() bool
Key function returns key value.
func (TcpGrpcAccessLogConfigValidationError) Reason ¶
func (e TcpGrpcAccessLogConfigValidationError) Reason() string
Reason function returns reason value.