Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions api/types/events/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,14 @@ type AuditEvent interface {
GetClusterName() string
// SetClusterName sets the name of the teleport cluster on the event.
SetClusterName(string)

// TrimToMaxSize returns a copy of the event trimmed to a smaller
// size. The desired size may not be achievable so callers
// should always check the size of the returned event before
// using it. Generally fields that are unique to the event
// will be trimmed, other fields are not currently modified
// (ie *Metadata messages).
TrimToMaxSize(maxSizeBytes int) AuditEvent
}

// Emitter emits audit events.
Expand Down
Loading