-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathconfig.go
36 lines (31 loc) · 1.2 KB
/
config.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
package config
import (
"errors"
"fmt"
"github.com/raystack/salt/config"
)
// Config contains the configuration for meteor.
type Config struct {
AppName string `mapstructure:"APP_NAME" default:"meteor"`
LogLevel string `mapstructure:"LOG_LEVEL" default:"info"`
MaxRetries int `mapstructure:"MAX_RETRIES" default:"5"`
RetryInitialIntervalSeconds int `mapstructure:"RETRY_INITIAL_INTERVAL_SECONDS" default:"5"`
StopOnSinkError bool `mapstructure:"STOP_ON_SINK_ERROR" default:"false"`
OtelEnabled bool `mapstructure:"OTEL_ENABLED" default:"false"`
OtelCollectorAddr string `mapstructure:"OTEL_COLLECTOR_ADDR" default:"localhost:4317"`
OtelTraceSampleProbability float64 `mapstructure:"OTEL_TRACE_SAMPLE_PROBABILITY" default:"1"`
SinkBatchSize int `mapstructure:"SINK_BATCH_SIZE" default:"1"`
}
func Load(configFile string) (Config, error) {
var cfg Config
err := config.NewLoader(config.WithFile(configFile)).
Load(&cfg)
if err != nil {
if errors.As(err, &config.ConfigFileNotFoundError{}) {
fmt.Println(err)
return cfg, nil
}
return Config{}, err
}
return cfg, nil
}