Files
nomad/command/agent/event/event.go
2023-08-10 17:27:29 -05:00

28 lines
678 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package event
import (
"context"
)
// Auditor describes the interface that must be implemented by an eventer.
type Auditor interface {
// Event emits an event to the auditor.
Event(ctx context.Context, eventType string, payload interface{}) error
// Enabled details if the auditor is enabled or not.
Enabled() bool
// Reopen signals to auditor to reopen any files they have open.
Reopen() error
// SetEnabled sets the auditor to enabled or disabled.
SetEnabled(enabled bool)
// DeliveryEnforced returns whether or not delivery of an audit
// log must be enforced
DeliveryEnforced() bool
}