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/eventer_config.go

26 lines
976 B

package event
import (
"fmt"
)
// EventerConfig supplies all the configuration needed to create/config an Eventer.
type EventerConfig struct {
AuditEnabled bool `hcl:"audit_enabled"` // AuditEnabled specifies if audit events should be emitted.
ObservationsEnabled bool `hcl:"observations_enabled"` // ObservationsEnabled specifies if observation events should be emitted.
SysEventsEnabled bool `hcl:"sysevents_enabled"` // SysEventsEnabled specifies if sysevents should be emitted.
Sinks []*SinkConfig `hcl:"-"` // Sinks are all the configured sinks
}
// Validate will Validate the config. A config isn't required to have any
// sinks to be valid.
func (c *EventerConfig) Validate() error {
const op = "event.(EventerConfig).Validate"
for i, s := range c.Sinks {
if err := s.Validate(); err != nil {
return fmt.Errorf("%s: sink %d is invalid: %w", op, i, err)
}
}
return nil
}