forked from hellofresh/health-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.go
34 lines (27 loc) · 789 Bytes
/
options.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
package health
import (
"fmt"
"go.opentelemetry.io/otel/trace"
)
// Option is the health-container options type
type Option func(*Health) error
// WithChecks adds checks to newly instantiated health-container
func WithChecks(checks ...Config) Option {
return func(h *Health) error {
for _, c := range checks {
if err := h.Register(c); err != nil {
return fmt.Errorf("could not register check %q: %w", c.Name, err)
}
}
return nil
}
}
// WithTracerProvider sets trace provider for the checks and instrumentation name that will be used
// for tracer from trace provider.
func WithTracerProvider(tp trace.TracerProvider, instrumentationName string) Option {
return func(h *Health) error {
h.tp = tp
h.instrumentationName = instrumentationName
return nil
}
}