forked from blind-oracle/cortex-tenant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.go
67 lines (52 loc) · 1.23 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package main
import (
"io/ioutil"
"time"
"github.com/pkg/errors"
fhu "github.com/valyala/fasthttp/fasthttputil"
"gopkg.in/yaml.v2"
)
type config struct {
Listen string
ListenPprof string `yaml:"listen_pprof"`
Target string
LogLevel string `yaml:"log_level"`
Timeout time.Duration
TimeoutShutdown time.Duration `yaml:"timeout_shutdown"`
Concurrency int
Tenant struct {
Label string
LabelRemove bool `yaml:"label_remove"`
Header string
Default string
AcceptAll bool `yaml:"accept_all"`
}
pipeIn *fhu.InmemoryListener
pipeOut *fhu.InmemoryListener
}
func configParse(b []byte) (*config, error) {
cfg := &config{}
if err := yaml.UnmarshalStrict(b, cfg); err != nil {
return nil, errors.Wrap(err, "Unable to parse config")
}
if cfg.Timeout == 0 {
cfg.Timeout = 10 * time.Second
}
if cfg.Concurrency == 0 {
cfg.Concurrency = 512
}
if cfg.Tenant.Header == "" {
cfg.Tenant.Header = "X-Scope-OrgID"
}
if cfg.Tenant.Label == "" {
cfg.Tenant.Label = "__tenant__"
}
return cfg, nil
}
func configLoad(file string) (*config, error) {
y, err := ioutil.ReadFile(file)
if err != nil {
return nil, errors.Wrap(err, "Unable to read config")
}
return configParse(y)
}