Documentation ¶
Overview ¶
Package istio_mixer_adapter_sample_report is a generated protocol buffer package.
It is generated from these files:
bazel-out/local-fastbuild/genfiles/mixer/template/sample/report/go_default_library_tmpl.proto
It has these top-level messages:
Type InstanceParam
Index ¶
- Constants
- Variables
- type Handler
- type HandlerBuilder
- type Instance
- type InstanceParam
- func (*InstanceParam) Descriptor() ([]byte, []int)
- func (this *InstanceParam) Equal(that interface{}) bool
- func (m *InstanceParam) GetBoolPrimitive() string
- func (m *InstanceParam) GetDimensions() map[string]string
- func (m *InstanceParam) GetDoublePrimitive() string
- func (m *InstanceParam) GetDuration() string
- func (m *InstanceParam) GetInt64Map() map[string]string
- func (m *InstanceParam) GetInt64Primitive() string
- func (m *InstanceParam) GetStringPrimitive() string
- func (m *InstanceParam) GetTimeStamp() string
- func (m *InstanceParam) GetValue() string
- func (this *InstanceParam) GoString() string
- func (m *InstanceParam) Marshal() (dAtA []byte, err error)
- func (m *InstanceParam) MarshalTo(dAtA []byte) (int, error)
- func (*InstanceParam) ProtoMessage()
- func (m *InstanceParam) Reset()
- func (m *InstanceParam) Size() (n int)
- func (this *InstanceParam) String() string
- func (m *InstanceParam) Unmarshal(dAtA []byte) error
- type Type
- func (*Type) Descriptor() ([]byte, []int)
- func (this *Type) Equal(that interface{}) bool
- func (m *Type) GetDimensions() map[string]istio_mixer_v1_config_descriptor.ValueType
- func (m *Type) GetValue() istio_mixer_v1_config_descriptor.ValueType
- func (this *Type) GoString() string
- func (m *Type) Marshal() (dAtA []byte, err error)
- func (m *Type) MarshalTo(dAtA []byte) (int, error)
- func (*Type) ProtoMessage()
- func (m *Type) Reset()
- func (m *Type) Size() (n int)
- func (this *Type) String() string
- func (m *Type) Unmarshal(dAtA []byte) error
Constants ¶
const TemplateName = "report"
Fully qualified name of the template
Variables ¶
var ( ErrInvalidLengthGoDefaultLibraryTmpl = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowGoDefaultLibraryTmpl = fmt.Errorf("proto: integer overflow") )
Functions ¶
This section is empty.
Types ¶
type Handler ¶
type Handler interface { adapter.Handler // HandleReport is called by Mixer at request time to deliver instances to // to an adapter. HandleReport(context.Context, []*Instance) error }
Handler must be implemented by adapter code if it wants to process data associated with the 'report' 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 'SetReportTypes'. These Type associated with an instance describes the shape of the instance
type HandlerBuilder ¶
type HandlerBuilder interface { adapter.HandlerBuilder // SetReportTypes 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. SetReportTypes(map[string]*Type) }
HandlerBuilder must be implemented by adapters if they want to process data associated with the 'report' 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 Value interface{} Dimensions map[string]interface{} Int64Primitive int64 BoolPrimitive bool DoublePrimitive float64 StringPrimitive string Int64Map map[string]int64 TimeStamp time.Time Duration time.Duration }
Instance is constructed by Mixer for the 'report' template.
type InstanceParam ¶
type InstanceParam struct { Value string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"` Dimensions map[string]string `` /* 154-byte string literal not displayed */ Int64Primitive string `protobuf:"bytes,3,opt,name=int64Primitive,proto3" json:"int64Primitive,omitempty"` BoolPrimitive string `protobuf:"bytes,4,opt,name=boolPrimitive,proto3" json:"boolPrimitive,omitempty"` DoublePrimitive string `protobuf:"bytes,5,opt,name=doublePrimitive,proto3" json:"doublePrimitive,omitempty"` StringPrimitive string `protobuf:"bytes,6,opt,name=stringPrimitive,proto3" json:"stringPrimitive,omitempty"` Int64Map map[string]string `` /* 150-byte string literal not displayed */ TimeStamp string `protobuf:"bytes,9,opt,name=timeStamp,proto3" json:"timeStamp,omitempty"` Duration string `protobuf:"bytes,10,opt,name=duration,proto3" json:"duration,omitempty"` }
func (*InstanceParam) Descriptor ¶
func (*InstanceParam) Descriptor() ([]byte, []int)
func (*InstanceParam) Equal ¶
func (this *InstanceParam) Equal(that interface{}) bool
func (*InstanceParam) GetBoolPrimitive ¶
func (m *InstanceParam) GetBoolPrimitive() string
func (*InstanceParam) GetDimensions ¶
func (m *InstanceParam) GetDimensions() map[string]string
func (*InstanceParam) GetDoublePrimitive ¶
func (m *InstanceParam) GetDoublePrimitive() string
func (*InstanceParam) GetDuration ¶
func (m *InstanceParam) GetDuration() string
func (*InstanceParam) GetInt64Map ¶
func (m *InstanceParam) GetInt64Map() map[string]string
func (*InstanceParam) GetInt64Primitive ¶
func (m *InstanceParam) GetInt64Primitive() string
func (*InstanceParam) GetStringPrimitive ¶
func (m *InstanceParam) GetStringPrimitive() string
func (*InstanceParam) GetTimeStamp ¶
func (m *InstanceParam) GetTimeStamp() string
func (*InstanceParam) GetValue ¶
func (m *InstanceParam) GetValue() string
func (*InstanceParam) GoString ¶
func (this *InstanceParam) GoString() string
func (*InstanceParam) Marshal ¶
func (m *InstanceParam) Marshal() (dAtA []byte, err 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 { Value istio_mixer_v1_config_descriptor.ValueType `protobuf:"varint,1,opt,name=value,proto3,enum=istio.mixer.v1.config.descriptor.ValueType" json:"value,omitempty"` Dimensions map[string]istio_mixer_v1_config_descriptor.ValueType `` /* 203-byte string literal not displayed */ }
func (*Type) Descriptor ¶
func (*Type) GetDimensions ¶
func (m *Type) GetDimensions() map[string]istio_mixer_v1_config_descriptor.ValueType
func (*Type) GetValue ¶
func (m *Type) GetValue() istio_mixer_v1_config_descriptor.ValueType
func (*Type) ProtoMessage ¶
func (*Type) ProtoMessage()