33 lines
670 B
Go
33 lines
670 B
Go
package retention
|
|
|
|
import (
|
|
"errors"
|
|
"time"
|
|
|
|
"github.com/influxdata/influxdb/v2/toml"
|
|
)
|
|
|
|
// Config represents the configuration for the retention service.
|
|
type Config struct {
|
|
Enabled bool `toml:"enabled"`
|
|
CheckInterval toml.Duration `toml:"check-interval"`
|
|
}
|
|
|
|
// NewConfig returns an instance of Config with defaults.
|
|
func NewConfig() Config {
|
|
return Config{Enabled: true, CheckInterval: toml.Duration(30 * time.Minute)}
|
|
}
|
|
|
|
// Validate returns an error if the Config is invalid.
|
|
func (c Config) Validate() error {
|
|
if !c.Enabled {
|
|
return nil
|
|
}
|
|
|
|
if c.CheckInterval <= 0 {
|
|
return errors.New("check-interval must be positive")
|
|
}
|
|
|
|
return nil
|
|
}
|