-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathoption.go
More file actions
228 lines (196 loc) · 6.05 KB
/
option.go
File metadata and controls
228 lines (196 loc) · 6.05 KB
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
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 stdOut trace provider")
}
}
}
// WithStdOutLogger option with default value
func WithStdOutLogger(enabled bool) Option {
return func(inst *Server) {
var err error
_, err = telemetry.NewStdOutLoggerProvider(inst.ctx)
log.Must(inst.l, err, "failed to create stdOut logger 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 stdOut 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(inst.ctx)
log.Must(inst.l, err, "failed to create prometheus meter provider")
}
}
}
// WithPyroscopeService option with default value
func WithPyroscopeService(enabled bool) Option {
return func(inst *Server) {
if config.GetBool(inst.Config(), "otel.enabled", enabled)() {
svs := service.NewGoRoutine(inst.Logger(), "pyroscope", func(ctx context.Context, l *zap.Logger) error {
p, err := telemetry.NewProfiler(ctx)
if err != nil {
return err
}
<-ctx.Done()
p.Flush(true)
l.Info("stopping pyroscope")
return p.Stop()
})
inst.initServices = append(inst.initServices, svs)
inst.AddAlwaysHealthzers(svs)
}
}
}
// 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)
}
}
}