You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/observability/event/event_sys.go

15 lines
447 B

package event
// sysVersion defines the version of sys events
const sysVersion = "v0.1"
type sysEvent struct {
Id Id `json:"-"`
Version string `json:"version"`
Op Op `json:"op,omitempty"`
Data map[string]interface{} `json:"data"`
}
// EventType is required for all event types by the eventlogger broker
func (e *sysEvent) EventType() string { return string(SystemType) }