accesslogv2

package
v0.12.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 2, 2024 License: Apache-2.0 Imports: 22 Imported by: 35

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_envoy_config_accesslog_v2_als_proto protoreflect.FileDescriptor
View Source
var File_envoy_config_accesslog_v2_file_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_api_msg_service.accesslog.v2.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 *core.GrpcService `protobuf:"bytes,2,opt,name=grpc_service,json=grpcService,proto3" json:"grpc_service,omitempty"`
	// 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_api_field_data.accesslog.v2.AccessLogCommon.filter_state_objects>`.
	// Logger will call `FilterState::Object::serializeAsProto` to serialize the filter state object.
	FilterStateObjectsToLog []string `` /* 136-byte string literal not displayed */
	// contains filtered or unexported fields
}

Common configuration for gRPC access logs. [#next-free-field: 6]

func (*CommonGrpcAccessLogConfig) Descriptor deprecated

func (*CommonGrpcAccessLogConfig) Descriptor() ([]byte, []int)

Deprecated: Use CommonGrpcAccessLogConfig.ProtoReflect.Descriptor instead.

func (*CommonGrpcAccessLogConfig) GetBufferFlushInterval added in v0.8.5

func (x *CommonGrpcAccessLogConfig) GetBufferFlushInterval() *duration.Duration

func (*CommonGrpcAccessLogConfig) GetBufferSizeBytes added in v0.8.5

func (x *CommonGrpcAccessLogConfig) GetBufferSizeBytes() *wrappers.UInt32Value

func (*CommonGrpcAccessLogConfig) GetFilterStateObjectsToLog added in v0.9.1

func (x *CommonGrpcAccessLogConfig) GetFilterStateObjectsToLog() []string

func (*CommonGrpcAccessLogConfig) GetGrpcService

func (x *CommonGrpcAccessLogConfig) GetGrpcService() *core.GrpcService

func (*CommonGrpcAccessLogConfig) GetLogName

func (x *CommonGrpcAccessLogConfig) GetLogName() string

func (*CommonGrpcAccessLogConfig) ProtoMessage

func (*CommonGrpcAccessLogConfig) ProtoMessage()

func (*CommonGrpcAccessLogConfig) ProtoReflect added in v0.9.6

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 added in v0.10.0

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 added in v0.10.0

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 added in v0.10.0

AllErrors returns a list of validation violation errors.

func (CommonGrpcAccessLogConfigMultiError) Error added in v0.10.0

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

Cause function returns cause value.

func (CommonGrpcAccessLogConfigValidationError) Error

Error satisfies the builtin error interface

func (CommonGrpcAccessLogConfigValidationError) ErrorName added in v0.7.0

ErrorName returns error name.

func (CommonGrpcAccessLogConfigValidationError) Field

Field function returns field value.

func (CommonGrpcAccessLogConfigValidationError) Key

Key function returns key value.

func (CommonGrpcAccessLogConfigValidationError) Reason

Reason function returns reason value.

type FileAccessLog

type FileAccessLog struct {

	// A path to a local file to which to write the access log entries.
	Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
	// Types that are assignable to AccessLogFormat:
	//
	//	*FileAccessLog_Format
	//	*FileAccessLog_JsonFormat
	//	*FileAccessLog_TypedJsonFormat
	AccessLogFormat isFileAccessLog_AccessLogFormat `protobuf_oneof:"access_log_format"`
	// contains filtered or unexported fields
}

Custom configuration for an :ref:`AccessLog <envoy_api_msg_config.filter.accesslog.v2.AccessLog>` that writes log entries directly to a file. Configures the built-in *envoy.access_loggers.file* AccessLog.

func (*FileAccessLog) Descriptor deprecated

func (*FileAccessLog) Descriptor() ([]byte, []int)

Deprecated: Use FileAccessLog.ProtoReflect.Descriptor instead.

func (*FileAccessLog) GetAccessLogFormat added in v0.6.2

func (m *FileAccessLog) GetAccessLogFormat() isFileAccessLog_AccessLogFormat

func (*FileAccessLog) GetFormat

func (x *FileAccessLog) GetFormat() string

func (*FileAccessLog) GetJsonFormat added in v0.6.2

func (x *FileAccessLog) GetJsonFormat() *_struct.Struct

func (*FileAccessLog) GetPath

func (x *FileAccessLog) GetPath() string

func (*FileAccessLog) GetTypedJsonFormat added in v0.9.2

func (x *FileAccessLog) GetTypedJsonFormat() *_struct.Struct

func (*FileAccessLog) ProtoMessage

func (*FileAccessLog) ProtoMessage()

func (*FileAccessLog) ProtoReflect added in v0.9.6

func (x *FileAccessLog) ProtoReflect() protoreflect.Message

func (*FileAccessLog) Reset

func (x *FileAccessLog) Reset()

func (*FileAccessLog) String

func (x *FileAccessLog) String() string

func (*FileAccessLog) Validate

func (m *FileAccessLog) Validate() error

Validate checks the field values on FileAccessLog 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 (*FileAccessLog) ValidateAll added in v0.10.0

func (m *FileAccessLog) ValidateAll() error

ValidateAll checks the field values on FileAccessLog 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 FileAccessLogMultiError, or nil if none found.

type FileAccessLogMultiError added in v0.10.0

type FileAccessLogMultiError []error

FileAccessLogMultiError is an error wrapping multiple validation errors returned by FileAccessLog.ValidateAll() if the designated constraints aren't met.

func (FileAccessLogMultiError) AllErrors added in v0.10.0

func (m FileAccessLogMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (FileAccessLogMultiError) Error added in v0.10.0

func (m FileAccessLogMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type FileAccessLogValidationError

type FileAccessLogValidationError struct {
	// contains filtered or unexported fields
}

FileAccessLogValidationError is the validation error returned by FileAccessLog.Validate if the designated constraints aren't met.

func (FileAccessLogValidationError) Cause

Cause function returns cause value.

func (FileAccessLogValidationError) Error

Error satisfies the builtin error interface

func (FileAccessLogValidationError) ErrorName added in v0.7.0

func (e FileAccessLogValidationError) ErrorName() string

ErrorName returns error name.

func (FileAccessLogValidationError) Field

Field function returns field value.

func (FileAccessLogValidationError) Key

Key function returns key value.

func (FileAccessLogValidationError) Reason

Reason function returns reason value.

type FileAccessLog_Format added in v0.6.2

type FileAccessLog_Format struct {
	// Access log :ref:`format string<config_access_log_format_strings>`.
	// Envoy supports :ref:`custom access log formats <config_access_log_format>` as well as a
	// :ref:`default format <config_access_log_default_format>`.
	Format string `protobuf:"bytes,2,opt,name=format,proto3,oneof"`
}

type FileAccessLog_JsonFormat added in v0.6.2

type FileAccessLog_JsonFormat struct {
	// Access log :ref:`format dictionary<config_access_log_format_dictionaries>`. All values
	// are rendered as strings.
	JsonFormat *_struct.Struct `protobuf:"bytes,3,opt,name=json_format,json=jsonFormat,proto3,oneof"`
}

type FileAccessLog_TypedJsonFormat added in v0.9.2

type FileAccessLog_TypedJsonFormat struct {
	// Access log :ref:`format dictionary<config_access_log_format_dictionaries>`. Values are
	// rendered as strings, numbers, or boolean values as appropriate. Nested JSON objects may
	// be produced by some command operators (e.g.FILTER_STATE or DYNAMIC_METADATA). See the
	// documentation for a specific command operator for details.
	TypedJsonFormat *_struct.Struct `protobuf:"bytes,4,opt,name=typed_json_format,json=typedJsonFormat,proto3,oneof"`
}

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_api_field_data.accesslog.v2.HTTPRequestProperties.request_headers>`.
	AdditionalRequestHeadersToLog []string `` /* 154-byte string literal not displayed */
	// Additional response headers to log in :ref:`HTTPResponseProperties.response_headers
	// <envoy_api_field_data.accesslog.v2.HTTPResponseProperties.response_headers>`.
	AdditionalResponseHeadersToLog []string `` /* 157-byte string literal not displayed */
	// Additional response trailers to log in :ref:`HTTPResponseProperties.response_trailers
	// <envoy_api_field_data.accesslog.v2.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_api_msg_config.filter.accesslog.v2.AccessLog>`. This configuration will populate :ref:`StreamAccessLogsMessage.http_logs <envoy_api_field_service.accesslog.v2.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 added in v0.9.6

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 added in v0.10.0

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 added in v0.10.0

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 added in v0.10.0

func (m HttpGrpcAccessLogConfigMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (HttpGrpcAccessLogConfigMultiError) Error added in v0.10.0

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

Cause function returns cause value.

func (HttpGrpcAccessLogConfigValidationError) Error

Error satisfies the builtin error interface

func (HttpGrpcAccessLogConfigValidationError) ErrorName added in v0.7.0

ErrorName returns error name.

func (HttpGrpcAccessLogConfigValidationError) Field

Field function returns field value.

func (HttpGrpcAccessLogConfigValidationError) Key

Key function returns key value.

func (HttpGrpcAccessLogConfigValidationError) Reason

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 added in v0.9.6

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 added in v0.10.0

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 added in v0.10.0

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 added in v0.10.0

func (m TcpGrpcAccessLogConfigMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TcpGrpcAccessLogConfigMultiError) Error added in v0.10.0

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

Cause function returns cause value.

func (TcpGrpcAccessLogConfigValidationError) Error

Error satisfies the builtin error interface

func (TcpGrpcAccessLogConfigValidationError) ErrorName added in v0.7.0

ErrorName returns error name.

func (TcpGrpcAccessLogConfigValidationError) Field

Field function returns field value.

func (TcpGrpcAccessLogConfigValidationError) Key

Key function returns key value.

func (TcpGrpcAccessLogConfigValidationError) Reason

Reason function returns reason value.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL