import "github.com/envoyproxy/go-control-plane/envoy/service/accesslog/v2"
var File_envoy_service_accesslog_v2_als_proto protoreflect.FileDescriptor
func RegisterAccessLogServiceServer(s *grpc.Server, srv AccessLogServiceServer)
type AccessLogServiceClient interface { // Envoy will connect and send StreamAccessLogsMessage messages forever. It does not expect any // response to be sent as nothing would be done in the case of failure. The server should // disconnect if it expects Envoy to reconnect. In the future we may decide to add a different // API for "critical" access logs in which Envoy will buffer access logs for some period of time // until it gets an ACK so it could then retry. This API is designed for high throughput with the // expectation that it might be lossy. StreamAccessLogs(ctx context.Context, opts ...grpc.CallOption) (AccessLogService_StreamAccessLogsClient, error) }
AccessLogServiceClient is the client API for AccessLogService service.
For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
func NewAccessLogServiceClient(cc grpc.ClientConnInterface) AccessLogServiceClient
type AccessLogServiceServer interface { // Envoy will connect and send StreamAccessLogsMessage messages forever. It does not expect any // response to be sent as nothing would be done in the case of failure. The server should // disconnect if it expects Envoy to reconnect. In the future we may decide to add a different // API for "critical" access logs in which Envoy will buffer access logs for some period of time // until it gets an ACK so it could then retry. This API is designed for high throughput with the // expectation that it might be lossy. StreamAccessLogs(AccessLogService_StreamAccessLogsServer) error }
AccessLogServiceServer is the server API for AccessLogService service.
type AccessLogService_StreamAccessLogsClient interface { Send(*StreamAccessLogsMessage) error CloseAndRecv() (*StreamAccessLogsResponse, error) grpc.ClientStream }
type AccessLogService_StreamAccessLogsServer interface { SendAndClose(*StreamAccessLogsResponse) error Recv() (*StreamAccessLogsMessage, error) grpc.ServerStream }
type StreamAccessLogsMessage struct { // Identifier data that will only be sent in the first message on the stream. This is effectively // structured metadata and is a performance optimization. Identifier *StreamAccessLogsMessage_Identifier `protobuf:"bytes,1,opt,name=identifier,proto3" json:"identifier,omitempty"` // Batches of log entries of a single type. Generally speaking, a given stream should only // ever include one type of log entry. // // Types that are assignable to LogEntries: // *StreamAccessLogsMessage_HttpLogs // *StreamAccessLogsMessage_TcpLogs LogEntries isStreamAccessLogsMessage_LogEntries `protobuf_oneof:"log_entries"` // contains filtered or unexported fields }
Stream message for the StreamAccessLogs API. Envoy will open a stream to the server and stream access logs without ever expecting a response.
func (*StreamAccessLogsMessage) Descriptor() ([]byte, []int)
Deprecated: Use StreamAccessLogsMessage.ProtoReflect.Descriptor instead.
func (x *StreamAccessLogsMessage) GetHttpLogs() *StreamAccessLogsMessage_HTTPAccessLogEntries
func (x *StreamAccessLogsMessage) GetIdentifier() *StreamAccessLogsMessage_Identifier
func (m *StreamAccessLogsMessage) GetLogEntries() isStreamAccessLogsMessage_LogEntries
func (x *StreamAccessLogsMessage) GetTcpLogs() *StreamAccessLogsMessage_TCPAccessLogEntries
func (*StreamAccessLogsMessage) ProtoMessage()
func (x *StreamAccessLogsMessage) ProtoReflect() protoreflect.Message
func (x *StreamAccessLogsMessage) Reset()
func (x *StreamAccessLogsMessage) String() string
func (m *StreamAccessLogsMessage) Validate() error
Validate checks the field values on StreamAccessLogsMessage with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
type StreamAccessLogsMessageValidationError struct {
// contains filtered or unexported fields
}
StreamAccessLogsMessageValidationError is the validation error returned by StreamAccessLogsMessage.Validate if the designated constraints aren't met.
func (e StreamAccessLogsMessageValidationError) Cause() error
Cause function returns cause value.
func (e StreamAccessLogsMessageValidationError) Error() string
Error satisfies the builtin error interface
func (e StreamAccessLogsMessageValidationError) ErrorName() string
ErrorName returns error name.
func (e StreamAccessLogsMessageValidationError) Field() string
Field function returns field value.
func (e StreamAccessLogsMessageValidationError) Key() bool
Key function returns key value.
func (e StreamAccessLogsMessageValidationError) Reason() string
Reason function returns reason value.
type StreamAccessLogsMessage_HTTPAccessLogEntries struct { LogEntry []*v2.HTTPAccessLogEntry `protobuf:"bytes,1,rep,name=log_entry,json=logEntry,proto3" json:"log_entry,omitempty"` // contains filtered or unexported fields }
Wrapper for batches of HTTP access log entries.
func (*StreamAccessLogsMessage_HTTPAccessLogEntries) Descriptor() ([]byte, []int)
Deprecated: Use StreamAccessLogsMessage_HTTPAccessLogEntries.ProtoReflect.Descriptor instead.
func (x *StreamAccessLogsMessage_HTTPAccessLogEntries) GetLogEntry() []*v2.HTTPAccessLogEntry
func (*StreamAccessLogsMessage_HTTPAccessLogEntries) ProtoMessage()
func (x *StreamAccessLogsMessage_HTTPAccessLogEntries) ProtoReflect() protoreflect.Message
func (x *StreamAccessLogsMessage_HTTPAccessLogEntries) Reset()
func (x *StreamAccessLogsMessage_HTTPAccessLogEntries) String() string
func (m *StreamAccessLogsMessage_HTTPAccessLogEntries) Validate() error
Validate checks the field values on StreamAccessLogsMessage_HTTPAccessLogEntries with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
type StreamAccessLogsMessage_HTTPAccessLogEntriesValidationError struct {
// contains filtered or unexported fields
}
StreamAccessLogsMessage_HTTPAccessLogEntriesValidationError is the validation error returned by StreamAccessLogsMessage_HTTPAccessLogEntries.Validate if the designated constraints aren't met.
func (e StreamAccessLogsMessage_HTTPAccessLogEntriesValidationError) Cause() error
Cause function returns cause value.
func (e StreamAccessLogsMessage_HTTPAccessLogEntriesValidationError) Error() string
Error satisfies the builtin error interface
func (e StreamAccessLogsMessage_HTTPAccessLogEntriesValidationError) ErrorName() string
ErrorName returns error name.
func (e StreamAccessLogsMessage_HTTPAccessLogEntriesValidationError) Field() string
Field function returns field value.
func (e StreamAccessLogsMessage_HTTPAccessLogEntriesValidationError) Key() bool
Key function returns key value.
func (e StreamAccessLogsMessage_HTTPAccessLogEntriesValidationError) Reason() string
Reason function returns reason value.
type StreamAccessLogsMessage_HttpLogs struct { HttpLogs *StreamAccessLogsMessage_HTTPAccessLogEntries `protobuf:"bytes,2,opt,name=http_logs,json=httpLogs,proto3,oneof"` }
type StreamAccessLogsMessage_Identifier struct { // The node sending the access log messages over the stream. Node *core.Node `protobuf:"bytes,1,opt,name=node,proto3" json:"node,omitempty"` // The friendly name of the log configured in :ref:`CommonGrpcAccessLogConfig // <envoy_api_msg_config.accesslog.v2.CommonGrpcAccessLogConfig>`. LogName string `protobuf:"bytes,2,opt,name=log_name,json=logName,proto3" json:"log_name,omitempty"` // contains filtered or unexported fields }
func (*StreamAccessLogsMessage_Identifier) Descriptor() ([]byte, []int)
Deprecated: Use StreamAccessLogsMessage_Identifier.ProtoReflect.Descriptor instead.
func (x *StreamAccessLogsMessage_Identifier) GetLogName() string
func (x *StreamAccessLogsMessage_Identifier) GetNode() *core.Node
func (*StreamAccessLogsMessage_Identifier) ProtoMessage()
func (x *StreamAccessLogsMessage_Identifier) ProtoReflect() protoreflect.Message
func (x *StreamAccessLogsMessage_Identifier) Reset()
func (x *StreamAccessLogsMessage_Identifier) String() string
func (m *StreamAccessLogsMessage_Identifier) Validate() error
Validate checks the field values on StreamAccessLogsMessage_Identifier with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
type StreamAccessLogsMessage_IdentifierValidationError struct {
// contains filtered or unexported fields
}
StreamAccessLogsMessage_IdentifierValidationError is the validation error returned by StreamAccessLogsMessage_Identifier.Validate if the designated constraints aren't met.
func (e StreamAccessLogsMessage_IdentifierValidationError) Cause() error
Cause function returns cause value.
func (e StreamAccessLogsMessage_IdentifierValidationError) Error() string
Error satisfies the builtin error interface
func (e StreamAccessLogsMessage_IdentifierValidationError) ErrorName() string
ErrorName returns error name.
func (e StreamAccessLogsMessage_IdentifierValidationError) Field() string
Field function returns field value.
func (e StreamAccessLogsMessage_IdentifierValidationError) Key() bool
Key function returns key value.
func (e StreamAccessLogsMessage_IdentifierValidationError) Reason() string
Reason function returns reason value.
type StreamAccessLogsMessage_TCPAccessLogEntries struct { LogEntry []*v2.TCPAccessLogEntry `protobuf:"bytes,1,rep,name=log_entry,json=logEntry,proto3" json:"log_entry,omitempty"` // contains filtered or unexported fields }
Wrapper for batches of TCP access log entries.
func (*StreamAccessLogsMessage_TCPAccessLogEntries) Descriptor() ([]byte, []int)
Deprecated: Use StreamAccessLogsMessage_TCPAccessLogEntries.ProtoReflect.Descriptor instead.
func (x *StreamAccessLogsMessage_TCPAccessLogEntries) GetLogEntry() []*v2.TCPAccessLogEntry
func (*StreamAccessLogsMessage_TCPAccessLogEntries) ProtoMessage()
func (x *StreamAccessLogsMessage_TCPAccessLogEntries) ProtoReflect() protoreflect.Message
func (x *StreamAccessLogsMessage_TCPAccessLogEntries) Reset()
func (x *StreamAccessLogsMessage_TCPAccessLogEntries) String() string
func (m *StreamAccessLogsMessage_TCPAccessLogEntries) Validate() error
Validate checks the field values on StreamAccessLogsMessage_TCPAccessLogEntries with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
type StreamAccessLogsMessage_TCPAccessLogEntriesValidationError struct {
// contains filtered or unexported fields
}
StreamAccessLogsMessage_TCPAccessLogEntriesValidationError is the validation error returned by StreamAccessLogsMessage_TCPAccessLogEntries.Validate if the designated constraints aren't met.
func (e StreamAccessLogsMessage_TCPAccessLogEntriesValidationError) Cause() error
Cause function returns cause value.
func (e StreamAccessLogsMessage_TCPAccessLogEntriesValidationError) Error() string
Error satisfies the builtin error interface
func (e StreamAccessLogsMessage_TCPAccessLogEntriesValidationError) ErrorName() string
ErrorName returns error name.
func (e StreamAccessLogsMessage_TCPAccessLogEntriesValidationError) Field() string
Field function returns field value.
func (e StreamAccessLogsMessage_TCPAccessLogEntriesValidationError) Key() bool
Key function returns key value.
func (e StreamAccessLogsMessage_TCPAccessLogEntriesValidationError) Reason() string
Reason function returns reason value.
type StreamAccessLogsMessage_TcpLogs struct { TcpLogs *StreamAccessLogsMessage_TCPAccessLogEntries `protobuf:"bytes,3,opt,name=tcp_logs,json=tcpLogs,proto3,oneof"` }
type StreamAccessLogsResponse struct {
// contains filtered or unexported fields
}
Empty response for the StreamAccessLogs API. Will never be sent. See below.
func (*StreamAccessLogsResponse) Descriptor() ([]byte, []int)
Deprecated: Use StreamAccessLogsResponse.ProtoReflect.Descriptor instead.
func (*StreamAccessLogsResponse) ProtoMessage()
func (x *StreamAccessLogsResponse) ProtoReflect() protoreflect.Message
func (x *StreamAccessLogsResponse) Reset()
func (x *StreamAccessLogsResponse) String() string
func (m *StreamAccessLogsResponse) Validate() error
Validate checks the field values on StreamAccessLogsResponse with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
type StreamAccessLogsResponseValidationError struct {
// contains filtered or unexported fields
}
StreamAccessLogsResponseValidationError is the validation error returned by StreamAccessLogsResponse.Validate if the designated constraints aren't met.
func (e StreamAccessLogsResponseValidationError) Cause() error
Cause function returns cause value.
func (e StreamAccessLogsResponseValidationError) Error() string
Error satisfies the builtin error interface
func (e StreamAccessLogsResponseValidationError) ErrorName() string
ErrorName returns error name.
func (e StreamAccessLogsResponseValidationError) Field() string
Field function returns field value.
func (e StreamAccessLogsResponseValidationError) Key() bool
Key function returns key value.
func (e StreamAccessLogsResponseValidationError) Reason() string
Reason function returns reason value.
type UnimplementedAccessLogServiceServer struct { }
UnimplementedAccessLogServiceServer can be embedded to have forward compatible implementations.
func (*UnimplementedAccessLogServiceServer) StreamAccessLogs(AccessLogService_StreamAccessLogsServer) error
Package envoy_service_accesslog_v2 imports 24 packages (graph) and is imported by 15 packages. Updated 2021-01-07. Refresh now. Tools for package owners.