-
Notifications
You must be signed in to change notification settings - Fork 3
/
option.go
191 lines (169 loc) · 5.22 KB
/
option.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
package keel
import (
"context"
"os"
"time"
"github.com/foomo/keel/service"
"github.com/spf13/viper"
"go.uber.org/zap"
"github.com/foomo/keel/config"
"github.com/foomo/keel/log"
"github.com/foomo/keel/telemetry"
)
// Option func
type Option func(inst *Server)
// WithLogger option
func WithLogger(l *zap.Logger) Option {
return func(inst *Server) {
inst.l = l
}
}
// WithLogFields option
func WithLogFields(fields ...zap.Field) Option {
return func(inst *Server) {
inst.l = inst.l.With(fields...)
}
}
// WithConfig option
func WithConfig(c *viper.Viper) Option {
return func(inst *Server) {
inst.c = c
}
}
// WithRemoteConfig option
func WithRemoteConfig(provider, endpoint, path string) Option {
return func(inst *Server) {
if config.GetBool(inst.Config(), "config.remote.enabled", true)() {
err := config.WithRemoteConfig(inst.c, provider, endpoint, path)
log.Must(inst.l, err, "failed to add remote config")
}
}
}
// WithContext option
func WithContext(ctx context.Context) Option {
return func(inst *Server) {
inst.ctx = ctx
}
}
// WithShutdownSignals option
func WithShutdownSignals(shutdownSignals ...os.Signal) Option {
return func(inst *Server) {
inst.shutdownSignals = shutdownSignals
}
}
// WithGracefulPeriod option
func WithGracefulPeriod(gracefulPeriod time.Duration) Option {
return func(inst *Server) {
inst.gracefulPeriod = gracefulPeriod
}
}
// WithHTTPZapService option with default value
func WithHTTPZapService(enabled bool) Option {
return func(inst *Server) {
if config.GetBool(inst.Config(), "service.zap.enabled", enabled)() {
svs := service.NewDefaultHTTPZap(inst.Logger())
inst.initServices = append(inst.initServices, svs)
inst.AddAlwaysHealthzers(svs)
}
}
}
// WithHTTPViperService option with default value
func WithHTTPViperService(enabled bool) Option {
return func(inst *Server) {
if config.GetBool(inst.Config(), "service.viper.enabled", enabled)() {
svs := service.NewDefaultHTTPViper(inst.Logger())
inst.initServices = append(inst.initServices, svs)
inst.AddAlwaysHealthzers(svs)
}
}
}
// WithStdOutTracer option with default value
func WithStdOutTracer(enabled bool) Option {
return func(inst *Server) {
if config.GetBool(inst.Config(), "otel.enabled", enabled)() {
var err error
inst.traceProvider, err = telemetry.NewStdOutTraceProvider(inst.ctx)
log.Must(inst.l, err, "failed to create std out trace provider")
}
}
}
// WithStdOutMeter option with default value
func WithStdOutMeter(enabled bool) Option {
return func(inst *Server) {
if config.GetBool(inst.Config(), "otel.enabled", enabled)() {
var err error
inst.meterProvider, err = telemetry.NewStdOutMeterProvider(inst.ctx)
log.Must(inst.l, err, "failed to create std out meter provider")
}
}
}
// WithOTLPGRPCTracer option with default value
func WithOTLPGRPCTracer(enabled bool) Option {
return func(inst *Server) {
if config.GetBool(inst.Config(), "otel.enabled", enabled)() {
var err error
inst.traceProvider, err = telemetry.NewOTLPGRPCTraceProvider(inst.ctx)
log.Must(inst.l, err, "failed to create otlp grpc trace provider")
}
}
}
// WithOTLPHTTPTracer option with default value
func WithOTLPHTTPTracer(enabled bool) Option {
return func(inst *Server) {
if config.GetBool(inst.Config(), "otel.enabled", enabled)() {
var err error
inst.traceProvider, err = telemetry.NewOTLPHTTPTraceProvider(inst.ctx)
log.Must(inst.l, err, "failed to create otlp http trace provider")
}
}
}
// WithPrometheusMeter option with default value
func WithPrometheusMeter(enabled bool) Option {
return func(inst *Server) {
if config.GetBool(inst.Config(), "otel.enabled", enabled)() {
var err error
inst.meterProvider, err = telemetry.NewPrometheusMeterProvider()
log.Must(inst.l, err, "failed to create prometheus meter provider")
}
}
}
// WithHTTPPrometheusService option with default value
func WithHTTPPrometheusService(enabled bool) Option {
return func(inst *Server) {
if config.GetBool(inst.Config(), "service.prometheus.enabled", enabled)() {
svs := service.NewDefaultHTTPPrometheus(inst.Logger())
inst.initServices = append(inst.initServices, svs)
inst.AddAlwaysHealthzers(svs)
}
}
}
// WithHTTPPProfService option with default value
func WithHTTPPProfService(enabled bool) Option {
return func(inst *Server) {
if config.GetBool(inst.Config(), "service.pprof.enabled", enabled)() {
svs := service.NewDefaultHTTPPProf(inst.Logger())
inst.initServices = append(inst.initServices, svs)
inst.AddAlwaysHealthzers(svs)
}
}
}
// WithHTTPHealthzService option with default value
func WithHTTPHealthzService(enabled bool) Option {
return func(inst *Server) {
if config.GetBool(inst.Config(), "service.healthz.enabled", enabled)() {
svs := service.NewDefaultHTTPProbes(inst.Logger(), inst.probes())
inst.initServices = append(inst.initServices, svs)
inst.AddAlwaysHealthzers(svs)
}
}
}
// WithHTTPReadmeService option with default value
func WithHTTPReadmeService(enabled bool) Option {
return func(inst *Server) {
if config.GetBool(inst.Config(), "service.readme.enabled", enabled)() {
svs := service.NewDefaultHTTPReadme(inst.Logger(), inst.readmers)
inst.initServices = append(inst.initServices, svs)
inst.AddAlwaysHealthzers(svs)
}
}
}