logentry

package
v0.0.0-...-46d7da7 Latest Latest
Warning

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

Go to latest
Published: Jul 20, 2018 License: Apache-2.0 Imports: 16 Imported by: 0

Documentation

Overview

Package logentry is a generated protocol buffer package.

The `logentry` template represents an individual entry within a log.

Example config:

```yaml apiVersion: "config.istio.io/v1alpha2" kind: logentry metadata:

name: accesslog
namespace: istio-system

spec:

severity: '"Default"'
timestamp: request.time
variables:
  sourceIp: source.ip | ip("0.0.0.0")
  destinationIp: destination.ip | ip("0.0.0.0")
  sourceUser: source.user | ""
  method: request.method | ""
  url: request.path | ""
  protocol: request.scheme | "http"
  responseCode: response.code | 0
  responseSize: response.size | 0
  requestSize: request.size | 0
  latency: response.duration | "0ms"
monitored_resource_type: '"UNSPECIFIED"'

```

The `logentry` template represents an individual entry within a log.

When writing the configuration, the value for the fields associated with this template can either be a literal or an [expression](https://istio.io/docs/reference//config/policy-and-telemetry/expression-language/). Please note that if the datatype of a field is not istio.policy.v1beta1.Value, then the expression's [inferred type](https://istio.io/docs/reference//config/policy-and-telemetry/expression-language/#type-checking) must match the datatype of the field.

It is generated from these files:

mixer/template/logentry/template_handler_service.proto

It has these top-level messages:

HandleLogEntryRequest
InstanceMsg
Type
InstanceParam

Index

Constants

View Source
const TemplateName = "logentry"

Fully qualified name of the template

Variables

View Source
var (
	ErrInvalidLengthTemplateHandlerService = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowTemplateHandlerService   = fmt.Errorf("proto: integer overflow")
)

Functions

func RegisterHandleLogEntryServiceServer

func RegisterHandleLogEntryServiceServer(s *grpc.Server, srv HandleLogEntryServiceServer)

Types

type HandleLogEntryRequest

type HandleLogEntryRequest struct {
	// 'logentry' instances.
	Instances []*InstanceMsg `protobuf:"bytes,1,rep,name=instances" json:"instances,omitempty"`
	// Adapter specific handler configuration.
	//
	// Note: Backends can also implement [InfrastructureBackend][https://istio.io/docs/reference/config/mixer/istio.mixer.adapter.model.v1beta1.html#InfrastructureBackend]
	// service and therefore opt to receive handler configuration during session creation through [InfrastructureBackend.CreateSession][TODO: Link to this fragment]
	// call. In that case, adapter_config will have type_url as 'google.protobuf.Any.type_url' and would contain string
	// value of session_id (returned from InfrastructureBackend.CreateSession).
	AdapterConfig *google_protobuf1.Any `protobuf:"bytes,2,opt,name=adapter_config,json=adapterConfig" json:"adapter_config,omitempty"`
	// Id to dedupe identical requests from Mixer.
	DedupId string `protobuf:"bytes,3,opt,name=dedup_id,json=dedupId,proto3" json:"dedup_id,omitempty"`
}

Request message for HandleLogEntry method.

func (*HandleLogEntryRequest) Descriptor

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

func (*HandleLogEntryRequest) Marshal

func (m *HandleLogEntryRequest) Marshal() (dAtA []byte, err error)

func (*HandleLogEntryRequest) MarshalTo

func (m *HandleLogEntryRequest) MarshalTo(dAtA []byte) (int, error)

func (*HandleLogEntryRequest) ProtoMessage

func (*HandleLogEntryRequest) ProtoMessage()

func (*HandleLogEntryRequest) Reset

func (m *HandleLogEntryRequest) Reset()

func (*HandleLogEntryRequest) Size

func (m *HandleLogEntryRequest) Size() (n int)

func (*HandleLogEntryRequest) String

func (this *HandleLogEntryRequest) String() string

func (*HandleLogEntryRequest) Unmarshal

func (m *HandleLogEntryRequest) Unmarshal(dAtA []byte) error

type HandleLogEntryServiceClient

type HandleLogEntryServiceClient interface {
	// HandleLogEntry is called by Mixer at request-time to deliver 'logentry' instances to the backend.
	HandleLogEntry(ctx context.Context, in *HandleLogEntryRequest, opts ...grpc.CallOption) (*istio_mixer_adapter_model_v1beta11.ReportResult, error)
}

func NewHandleLogEntryServiceClient

func NewHandleLogEntryServiceClient(cc *grpc.ClientConn) HandleLogEntryServiceClient

type HandleLogEntryServiceServer

type HandleLogEntryServiceServer interface {
	// HandleLogEntry is called by Mixer at request-time to deliver 'logentry' instances to the backend.
	HandleLogEntry(context.Context, *HandleLogEntryRequest) (*istio_mixer_adapter_model_v1beta11.ReportResult, error)
}

type Handler

type Handler interface {
	adapter.Handler

	// HandleLogEntry is called by Mixer at request time to deliver instances to
	// to an adapter.
	HandleLogEntry(context.Context, []*Instance) error
}

Handler must be implemented by adapter code if it wants to process data associated with the 'logentry' template.

Mixer uses this interface to call into the adapter at request time in order to dispatch created instances to the adapter. Adapters take the incoming instances and do what they need to achieve their primary function.

The name of each instance can be used as a key into the Type map supplied to the adapter at configuration time via the method 'SetLogEntryTypes'. These Type associated with an instance describes the shape of the instance

type HandlerBuilder

type HandlerBuilder interface {
	adapter.HandlerBuilder

	// SetLogEntryTypes is invoked by Mixer to pass the template-specific Type information for instances that an adapter
	// may receive at runtime. The type information describes the shape of the instance.
	SetLogEntryTypes(map[string]*Type)
}

HandlerBuilder must be implemented by adapters if they want to process data associated with the 'logentry' template.

Mixer uses this interface to call into the adapter at configuration time to configure it with adapter-specific configuration as well as all template-specific type information.

type Instance

type Instance struct {
	// Name of the instance as specified in configuration.
	Name string

	// Variables that are delivered for each log entry.
	Variables map[string]interface{}

	// Timestamp is the time value for the log entry
	Timestamp time.Time

	// Severity indicates the importance of the log entry.
	Severity string

	// Optional. An expression to compute the type of the monitored resource this log entry is being recorded on.
	// If the logging backend supports monitored resources, these fields are used to populate that resource.
	// Otherwise these fields will be ignored by the adapter.
	MonitoredResourceType string

	// Optional. A set of expressions that will form the dimensions of the monitored resource this log entry is being
	// recorded on. If the logging backend supports monitored resources, these fields are used to populate that resource.
	// Otherwise these fields will be ignored by the adapter.
	MonitoredResourceDimensions map[string]interface{}
}

Instance is constructed by Mixer for the 'logentry' template.

The `logentry` template represents an individual entry within a log.

When writing the configuration, the value for the fields associated with this template can either be a literal or an [expression](https://istio.io/docs/reference//config/policy-and-telemetry/expression-language/). Please note that if the datatype of a field is not istio.policy.v1beta1.Value, then the expression's [inferred type](https://istio.io/docs/reference//config/policy-and-telemetry/expression-language/#type-checking) must match the datatype of the field.

type InstanceMsg

type InstanceMsg struct {
	// Name of the instance as specified in configuration.
	Name string `protobuf:"bytes,72295727,opt,name=name,proto3" json:"name,omitempty"`
	// Variables that are delivered for each log entry.
	Variables map[string]*istio_policy_v1beta11.Value `` /* 145-byte string literal not displayed */
	// Timestamp is the time value for the log entry
	Timestamp *istio_policy_v1beta11.TimeStamp `protobuf:"bytes,2,opt,name=timestamp" json:"timestamp,omitempty"`
	// Severity indicates the importance of the log entry.
	Severity string `protobuf:"bytes,3,opt,name=severity,proto3" json:"severity,omitempty"`
	// Optional. An expression to compute the type of the monitored resource this log entry is being recorded on.
	// If the logging backend supports monitored resources, these fields are used to populate that resource.
	// Otherwise these fields will be ignored by the adapter.
	MonitoredResourceType string `` /* 126-byte string literal not displayed */
	// Optional. A set of expressions that will form the dimensions of the monitored resource this log entry is being
	// recorded on. If the logging backend supports monitored resources, these fields are used to populate that resource.
	// Otherwise these fields will be ignored by the adapter.
	MonitoredResourceDimensions map[string]*istio_policy_v1beta11.Value `` /* 218-byte string literal not displayed */
}

Contains instance payload for 'logentry' template. This is passed to infrastructure backends during request-time through HandleLogEntryService.HandleLogEntry.

func (*InstanceMsg) Descriptor

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

func (*InstanceMsg) Marshal

func (m *InstanceMsg) Marshal() (dAtA []byte, err error)

func (*InstanceMsg) MarshalTo

func (m *InstanceMsg) MarshalTo(dAtA []byte) (int, error)

func (*InstanceMsg) ProtoMessage

func (*InstanceMsg) ProtoMessage()

func (*InstanceMsg) Reset

func (m *InstanceMsg) Reset()

func (*InstanceMsg) Size

func (m *InstanceMsg) Size() (n int)

func (*InstanceMsg) String

func (this *InstanceMsg) String() string

func (*InstanceMsg) Unmarshal

func (m *InstanceMsg) Unmarshal(dAtA []byte) error

type InstanceParam

type InstanceParam struct {
	// Variables that are delivered for each log entry.
	Variables map[string]string `` /* 152-byte string literal not displayed */
	// Timestamp is the time value for the log entry
	Timestamp string `protobuf:"bytes,2,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	// Severity indicates the importance of the log entry.
	Severity string `protobuf:"bytes,3,opt,name=severity,proto3" json:"severity,omitempty"`
	// Optional. An expression to compute the type of the monitored resource this log entry is being recorded on.
	// If the logging backend supports monitored resources, these fields are used to populate that resource.
	// Otherwise these fields will be ignored by the adapter.
	MonitoredResourceType string `` /* 126-byte string literal not displayed */
	// Optional. A set of expressions that will form the dimensions of the monitored resource this log entry is being
	// recorded on. If the logging backend supports monitored resources, these fields are used to populate that resource.
	// Otherwise these fields will be ignored by the adapter.
	MonitoredResourceDimensions map[string]string `` /* 225-byte string literal not displayed */
}

Represents instance configuration schema for 'logentry' template.

func (*InstanceParam) Descriptor

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

func (*InstanceParam) Marshal

func (m *InstanceParam) Marshal() (dAtA []byte, err error)

func (*InstanceParam) MarshalTo

func (m *InstanceParam) MarshalTo(dAtA []byte) (int, error)

func (*InstanceParam) ProtoMessage

func (*InstanceParam) ProtoMessage()

func (*InstanceParam) Reset

func (m *InstanceParam) Reset()

func (*InstanceParam) Size

func (m *InstanceParam) Size() (n int)

func (*InstanceParam) String

func (this *InstanceParam) String() string

func (*InstanceParam) Unmarshal

func (m *InstanceParam) Unmarshal(dAtA []byte) error

type Type

type Type struct {
	// Variables that are delivered for each log entry.
	Variables map[string]istio_policy_v1beta1.ValueType `` /* 189-byte string literal not displayed */
	// Optional. A set of expressions that will form the dimensions of the monitored resource this log entry is being
	// recorded on. If the logging backend supports monitored resources, these fields are used to populate that resource.
	// Otherwise these fields will be ignored by the adapter.
	MonitoredResourceDimensions map[string]istio_policy_v1beta1.ValueType `` /* 262-byte string literal not displayed */
}

Contains inferred type information about specific instance of 'logentry' template. This is passed to infrastructure backends during configuration-time through [InfrastructureBackend.CreateSession][TODO: Link to this fragment].

func (*Type) Descriptor

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

func (*Type) Marshal

func (m *Type) Marshal() (dAtA []byte, err error)

func (*Type) MarshalTo

func (m *Type) MarshalTo(dAtA []byte) (int, error)

func (*Type) ProtoMessage

func (*Type) ProtoMessage()

func (*Type) Reset

func (m *Type) Reset()

func (*Type) Size

func (m *Type) Size() (n int)

func (*Type) String

func (this *Type) String() string

func (*Type) Unmarshal

func (m *Type) Unmarshal(dAtA []byte) error

Jump to

Keyboard shortcuts

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