Documentation
¶
Index ¶
- Variables
- type ActivityEvent
- func (*ActivityEvent) Descriptor() ([]byte, []int)
- func (m *ActivityEvent) GetDimensions() []*common.Dimension
- func (m *ActivityEvent) GetMessage() string
- func (m *ActivityEvent) Marshal() (dAtA []byte, err error)
- func (m *ActivityEvent) MarshalTo(dAtA []byte) (int, error)
- func (m *ActivityEvent) MarshalToSizedBuffer(dAtA []byte) (int, error)
- func (*ActivityEvent) ProtoMessage()
- func (m *ActivityEvent) Reset()
- func (m *ActivityEvent) Size() (n int)
- func (m *ActivityEvent) String() string
- func (m *ActivityEvent) Unmarshal(dAtA []byte) error
- func (m *ActivityEvent) XXX_DiscardUnknown()
- func (m *ActivityEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *ActivityEvent) XXX_Merge(src proto.Message)
- func (m *ActivityEvent) XXX_Size() int
- func (m *ActivityEvent) XXX_Unmarshal(b []byte) error
- type Event
- func (*Event) Descriptor() ([]byte, []int)
- func (m *Event) GetActivityEvent() *ActivityEvent
- func (m *Event) GetData() isEvent_Data
- func (m *Event) GetMetadata() *Metadata
- func (m *Event) Marshal() (dAtA []byte, err error)
- func (m *Event) MarshalTo(dAtA []byte) (int, error)
- func (m *Event) MarshalToSizedBuffer(dAtA []byte) (int, error)
- func (*Event) ProtoMessage()
- func (m *Event) Reset()
- func (m *Event) Size() (n int)
- func (m *Event) String() string
- func (m *Event) Unmarshal(dAtA []byte) error
- func (m *Event) XXX_DiscardUnknown()
- func (m *Event) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *Event) XXX_Merge(src proto.Message)
- func (*Event) XXX_OneofWrappers() []interface{}
- func (m *Event) XXX_Size() int
- func (m *Event) XXX_Unmarshal(b []byte) error
- type EventReport
- func (*EventReport) Descriptor() ([]byte, []int)
- func (m *EventReport) GetEvents() []*Event
- func (m *EventReport) Marshal() (dAtA []byte, err error)
- func (m *EventReport) MarshalTo(dAtA []byte) (int, error)
- func (m *EventReport) MarshalToSizedBuffer(dAtA []byte) (int, error)
- func (*EventReport) ProtoMessage()
- func (m *EventReport) Reset()
- func (m *EventReport) Size() (n int)
- func (m *EventReport) String() string
- func (m *EventReport) Unmarshal(dAtA []byte) error
- func (m *EventReport) XXX_DiscardUnknown()
- func (m *EventReport) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *EventReport) XXX_Merge(src proto.Message)
- func (m *EventReport) XXX_Size() int
- func (m *EventReport) XXX_Unmarshal(b []byte) error
- type Event_ActivityEvent
- type Metadata
- func (*Metadata) Descriptor() ([]byte, []int)
- func (m *Metadata) GetCategory() string
- func (m *Metadata) GetCorrelationID() string
- func (m *Metadata) GetEventLevel() string
- func (m *Metadata) GetModule() string
- func (m *Metadata) GetTimestamp() *types.Timestamp
- func (m *Metadata) GetType() string
- func (m *Metadata) GetUUID() string
- func (m *Metadata) Marshal() (dAtA []byte, err error)
- func (m *Metadata) MarshalTo(dAtA []byte) (int, error)
- func (m *Metadata) MarshalToSizedBuffer(dAtA []byte) (int, error)
- func (*Metadata) ProtoMessage()
- func (m *Metadata) Reset()
- func (m *Metadata) Size() (n int)
- func (m *Metadata) String() string
- func (m *Metadata) Unmarshal(dAtA []byte) error
- func (m *Metadata) XXX_DiscardUnknown()
- func (m *Metadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *Metadata) XXX_Merge(src proto.Message)
- func (m *Metadata) XXX_Size() int
- func (m *Metadata) XXX_Unmarshal(b []byte) error
Constants ¶
This section is empty.
Variables ¶
Functions ¶
This section is empty.
Types ¶
type ActivityEvent ¶
type ActivityEvent struct { Message string `protobuf:"bytes,1,opt,name=Message,proto3" json:"message"` Dimensions []*common.Dimension `protobuf:"bytes,2,rep,name=Dimensions,proto3" json:"dimensions"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*ActivityEvent) Descriptor ¶
func (*ActivityEvent) Descriptor() ([]byte, []int)
func (*ActivityEvent) GetDimensions ¶
func (m *ActivityEvent) GetDimensions() []*common.Dimension
func (*ActivityEvent) GetMessage ¶
func (m *ActivityEvent) GetMessage() string
func (*ActivityEvent) Marshal ¶
func (m *ActivityEvent) Marshal() (dAtA []byte, err error)
func (*ActivityEvent) MarshalToSizedBuffer ¶
func (m *ActivityEvent) MarshalToSizedBuffer(dAtA []byte) (int, error)
func (*ActivityEvent) ProtoMessage ¶
func (*ActivityEvent) ProtoMessage()
func (*ActivityEvent) Reset ¶
func (m *ActivityEvent) Reset()
func (*ActivityEvent) Size ¶
func (m *ActivityEvent) Size() (n int)
func (*ActivityEvent) String ¶
func (m *ActivityEvent) String() string
func (*ActivityEvent) Unmarshal ¶
func (m *ActivityEvent) Unmarshal(dAtA []byte) error
func (*ActivityEvent) XXX_DiscardUnknown ¶
func (m *ActivityEvent) XXX_DiscardUnknown()
func (*ActivityEvent) XXX_Marshal ¶
func (m *ActivityEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*ActivityEvent) XXX_Merge ¶
func (m *ActivityEvent) XXX_Merge(src proto.Message)
func (*ActivityEvent) XXX_Size ¶
func (m *ActivityEvent) XXX_Size() int
func (*ActivityEvent) XXX_Unmarshal ¶
func (m *ActivityEvent) XXX_Unmarshal(b []byte) error
type Event ¶
type Event struct { Metadata *Metadata `protobuf:"bytes,1,opt,name=Metadata,proto3" json:"metadata"` // Types that are valid to be assigned to Data: // *Event_ActivityEvent Data isEvent_Data `protobuf_oneof:"data"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*Event) Descriptor ¶
func (*Event) GetActivityEvent ¶
func (m *Event) GetActivityEvent() *ActivityEvent
func (*Event) GetMetadata ¶
func (*Event) ProtoMessage ¶
func (*Event) ProtoMessage()
func (*Event) XXX_DiscardUnknown ¶
func (m *Event) XXX_DiscardUnknown()
func (*Event) XXX_Marshal ¶
func (*Event) XXX_OneofWrappers ¶
func (*Event) XXX_OneofWrappers() []interface{}
XXX_OneofWrappers is for the internal use of the proto package.
func (*Event) XXX_Unmarshal ¶
type EventReport ¶
type EventReport struct { Events []*Event `protobuf:"bytes,1,rep,name=Events,proto3" json:"events"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*EventReport) Descriptor ¶
func (*EventReport) Descriptor() ([]byte, []int)
func (*EventReport) GetEvents ¶
func (m *EventReport) GetEvents() []*Event
func (*EventReport) Marshal ¶
func (m *EventReport) Marshal() (dAtA []byte, err error)
func (*EventReport) MarshalToSizedBuffer ¶
func (m *EventReport) MarshalToSizedBuffer(dAtA []byte) (int, error)
func (*EventReport) ProtoMessage ¶
func (*EventReport) ProtoMessage()
func (*EventReport) Reset ¶
func (m *EventReport) Reset()
func (*EventReport) Size ¶
func (m *EventReport) Size() (n int)
func (*EventReport) String ¶
func (m *EventReport) String() string
func (*EventReport) Unmarshal ¶
func (m *EventReport) Unmarshal(dAtA []byte) error
func (*EventReport) XXX_DiscardUnknown ¶
func (m *EventReport) XXX_DiscardUnknown()
func (*EventReport) XXX_Marshal ¶
func (m *EventReport) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*EventReport) XXX_Merge ¶
func (m *EventReport) XXX_Merge(src proto.Message)
func (*EventReport) XXX_Size ¶
func (m *EventReport) XXX_Size() int
func (*EventReport) XXX_Unmarshal ¶
func (m *EventReport) XXX_Unmarshal(b []byte) error
type Event_ActivityEvent ¶
type Event_ActivityEvent struct {
ActivityEvent *ActivityEvent `protobuf:"bytes,2,opt,name=ActivityEvent,proto3,oneof" json:"activity_event"`
}
func (*Event_ActivityEvent) MarshalTo ¶
func (m *Event_ActivityEvent) MarshalTo(dAtA []byte) (int, error)
func (*Event_ActivityEvent) MarshalToSizedBuffer ¶
func (m *Event_ActivityEvent) MarshalToSizedBuffer(dAtA []byte) (int, error)
func (*Event_ActivityEvent) Size ¶
func (m *Event_ActivityEvent) Size() (n int)
type Metadata ¶
type Metadata struct { Module string `protobuf:"bytes,1,opt,name=Module,proto3" json:"module"` UUID string `protobuf:"bytes,2,opt,name=UUID,proto3" json:"uuid"` CorrelationID string `protobuf:"bytes,3,opt,name=CorrelationID,proto3" json:"correlation_id"` Timestamp *types.Timestamp `protobuf:"bytes,4,opt,name=Timestamp,proto3" json:"timestamp"` EventLevel string `protobuf:"bytes,5,opt,name=EventLevel,proto3" json:"event_level"` Type string `protobuf:"bytes,6,opt,name=Type,proto3" json:"type"` Category string `protobuf:"bytes,7,opt,name=Category,proto3" json:"category"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*Metadata) Descriptor ¶
func (*Metadata) GetCategory ¶
func (*Metadata) GetCorrelationID ¶
func (*Metadata) GetEventLevel ¶
func (*Metadata) GetTimestamp ¶
func (*Metadata) MarshalToSizedBuffer ¶
func (*Metadata) ProtoMessage ¶
func (*Metadata) ProtoMessage()
func (*Metadata) XXX_DiscardUnknown ¶
func (m *Metadata) XXX_DiscardUnknown()
func (*Metadata) XXX_Marshal ¶
func (*Metadata) XXX_Unmarshal ¶
Click to show internal directories.
Click to hide internal directories.