Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type EventRecorder ¶
type EventRecorder interface {
Eventf(log logr.Logger, apiMetadata api.Metadata, eventType string, reason string, messageFormat string, args ...any)
}
EventRecorder defines an interface for recording events
type EventStore ¶
EventStore defines an interface for listing events
type EventStoreOptions ¶
type EventStoreOptions struct { MachineEventMaxEvents int MachineEventTTL time.Duration MachineEventResyncInterval time.Duration }
EventStoreOptions defines options to initialize the machine event store
type Store ¶
type Store struct {
// contains filtered or unexported fields
}
Store implements the EventRecorder and EventStore interface and represents an in-memory event store with TTL for events.
func NewEventStore ¶
func NewEventStore(log logr.Logger, opts EventStoreOptions) *Store
NewEventStore creates a new EventStore with a fixed number of events and set TTL for events.
func (*Store) Eventf ¶
func (es *Store) Eventf(log logr.Logger, apiMetadata api.Metadata, eventType, reason, messageFormat string, args ...any)
Eventf logs and records an event with formatted message.
func (*Store) ListEvents ¶
ListEvents returns a copy of all events currently in the store.
Click to show internal directories.
Click to hide internal directories.