forked from gravitational/teleport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
discard.go
48 lines (40 loc) · 1.41 KB
/
discard.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package events
import (
"context"
"time"
"github.com/gravitational/teleport/lib/session"
)
// DiscardAuditLog is do-nothing, discard-everything implementation
// of IAuditLog interface used for cases when audit is turned off
type DiscardAuditLog struct{}
// NewDiscardAuditLog returns a no-op audit log instance
func NewDiscardAuditLog() *DiscardAuditLog {
return &DiscardAuditLog{}
}
func (d *DiscardAuditLog) WaitForDelivery(context.Context) error {
return nil
}
func (d *DiscardAuditLog) Close() error {
return nil
}
func (d *DiscardAuditLog) EmitAuditEvent(eventType string, fields EventFields) error {
return nil
}
func (d *DiscardAuditLog) PostSessionSlice(SessionSlice) error {
return nil
}
func (d *DiscardAuditLog) GetSessionChunk(namespace string, sid session.ID, offsetBytes, maxBytes int) ([]byte, error) {
return make([]byte, 0), nil
}
func (d *DiscardAuditLog) GetSessionEvents(namespace string, sid session.ID, after int, includePrintEvents bool) ([]EventFields, error) {
return make([]EventFields, 0), nil
}
func (d *DiscardAuditLog) SearchEvents(fromUTC, toUTC time.Time, query string, limit int) ([]EventFields, error) {
return make([]EventFields, 0), nil
}
func (d *DiscardAuditLog) SearchSessionEvents(fromUTC time.Time, toUTC time.Time, limit int) ([]EventFields, error) {
return make([]EventFields, 0), nil
}
func (d *DiscardAuditLog) UploadSessionRecording(SessionRecording) error {
return nil
}