-
Notifications
You must be signed in to change notification settings - Fork 0
/
option.go
47 lines (40 loc) · 1.15 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
package otelkafkakonsumer
import (
"go.opentelemetry.io/otel/attribute"
"go.opentelemetry.io/otel/propagation"
"go.opentelemetry.io/otel/trace"
)
// Option applies options to a configuration.
type Option interface {
Apply(*Config)
}
// OptionFunc is a generic way to set an option using a func.
type OptionFunc func(*Config)
// Apply applies the configuration option.
func (o OptionFunc) Apply(c *Config) {
o(c)
}
// WithTracerProvider returns an Option that sets the TracerProvider used for
// a configuration.
func WithTracerProvider(tp trace.TracerProvider) Option {
return OptionFunc(func(c *Config) {
c.TracerProvider = tp
})
}
// WithAttributes returns an Option that appends attr to the attributes set
// for every span created.
func WithAttributes(attr []attribute.KeyValue) Option {
return OptionFunc(func(c *Config) {
c.DefaultStartOpts = append(
c.DefaultStartOpts,
trace.WithAttributes(attr...),
)
})
}
// WithPropagator returns an Option that sets p as the TextMapPropagator used
// when propagating a span context.
func WithPropagator(p propagation.TextMapPropagator) Option {
return OptionFunc(func(c *Config) {
c.Propagator = p
})
}