-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathinstrumentation.go
363 lines (315 loc) · 10.6 KB
/
instrumentation.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
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
// Package auto provides OpenTelemetry automatic tracing instrumentation for Go
// packages using eBPF.
package auto
import (
"context"
"errors"
"fmt"
"log/slog"
"os"
"os/signal"
"sync"
"go.opentelemetry.io/otel/attribute"
semconv "go.opentelemetry.io/otel/semconv/v1.30.0"
"go.opentelemetry.io/auto/internal/pkg/instrumentation"
dbSql "go.opentelemetry.io/auto/internal/pkg/instrumentation/bpf/database/sql"
kafkaConsumer "go.opentelemetry.io/auto/internal/pkg/instrumentation/bpf/github.com/segmentio/kafka-go/consumer"
kafkaProducer "go.opentelemetry.io/auto/internal/pkg/instrumentation/bpf/github.com/segmentio/kafka-go/producer"
autosdk "go.opentelemetry.io/auto/internal/pkg/instrumentation/bpf/go.opentelemetry.io/auto/sdk"
otelTrace "go.opentelemetry.io/auto/internal/pkg/instrumentation/bpf/go.opentelemetry.io/otel/trace"
otelTraceGlobal "go.opentelemetry.io/auto/internal/pkg/instrumentation/bpf/go.opentelemetry.io/otel/traceglobal"
grpcClient "go.opentelemetry.io/auto/internal/pkg/instrumentation/bpf/google.golang.org/grpc/client"
grpcServer "go.opentelemetry.io/auto/internal/pkg/instrumentation/bpf/google.golang.org/grpc/server"
httpClient "go.opentelemetry.io/auto/internal/pkg/instrumentation/bpf/net/http/client"
httpServer "go.opentelemetry.io/auto/internal/pkg/instrumentation/bpf/net/http/server"
"go.opentelemetry.io/auto/internal/pkg/instrumentation/probe"
"go.opentelemetry.io/auto/internal/pkg/process"
"go.opentelemetry.io/auto/pipeline"
"go.opentelemetry.io/auto/pipeline/otelsdk"
)
// envLogLevelKey is the key for the environment variable value containing the log level.
const envLogLevelKey = "OTEL_LOG_LEVEL"
// Instrumentation manages and controls all OpenTelemetry Go
// auto-instrumentation.
type Instrumentation struct {
manager *instrumentation.Manager
cleanup func()
stopMu sync.Mutex
stop context.CancelFunc
stopped chan struct{}
}
// NewInstrumentation returns a new [Instrumentation] configured with the
// provided opts.
//
// If conflicting or duplicate options are provided, the last one will have
// precedence and be used.
func NewInstrumentation(
ctx context.Context,
opts ...InstrumentationOption,
) (*Instrumentation, error) {
c, err := newInstConfig(ctx, opts)
if err != nil {
return nil, err
}
if err := c.validate(); err != nil {
return nil, err
}
p := []probe.Probe{
grpcClient.New(c.logger, Version()),
grpcServer.New(c.logger, Version()),
httpServer.New(c.logger, Version()),
httpClient.New(c.logger, Version()),
dbSql.New(c.logger, Version()),
kafkaProducer.New(c.logger, Version()),
kafkaConsumer.New(c.logger, Version()),
autosdk.New(c.logger),
otelTrace.New(c.logger),
otelTraceGlobal.New(c.logger),
}
cp := convertConfigProvider(c.cp)
mngr, err := instrumentation.NewManager(c.logger, c.handler, c.pid, cp, p...)
if err != nil {
return nil, err
}
return &Instrumentation{manager: mngr, cleanup: c.handlerClose}, nil
}
// Load loads and attaches the relevant probes to the target process.
func (i *Instrumentation) Load(ctx context.Context) error {
return i.manager.Load(ctx)
}
// Run starts the instrumentation. It must be called after [Instrumentation.Load].
//
// This function will not return until either ctx is done, an unrecoverable
// error is encountered, or Close is called.
func (i *Instrumentation) Run(ctx context.Context) error {
if i.cleanup != nil {
defer i.cleanup()
}
ctx, err := i.newStop(ctx)
if err != nil {
return err
}
err = i.manager.Run(ctx)
close(i.stopped)
if errors.Is(err, context.Canceled) || errors.Is(err, context.DeadlineExceeded) {
return nil
}
return err
}
func (i *Instrumentation) newStop(parent context.Context) (context.Context, error) {
i.stopMu.Lock()
defer i.stopMu.Unlock()
if i.stop != nil {
return parent, errors.New("instrumentation already running")
}
ctx, stop := context.WithCancel(parent)
i.stop, i.stopped = stop, make(chan struct{})
return ctx, nil
}
// Close closes the Instrumentation, cleaning up all used resources.
func (i *Instrumentation) Close() error {
i.stopMu.Lock()
defer i.stopMu.Unlock()
if i.stop == nil {
// if stop is not set, the instrumentation is not running
// stop the manager to clean up resources
return i.manager.Stop()
}
if i.cleanup != nil {
defer i.cleanup()
}
i.stop()
<-i.stopped
i.stop, i.stopped = nil, nil
return nil
}
// InstrumentationOption applies a configuration option to [Instrumentation].
type InstrumentationOption interface {
apply(context.Context, instConfig) (instConfig, error)
}
type instConfig struct {
pid process.ID
handler *pipeline.Handler
handlerClose func()
logger *slog.Logger
sampler Sampler
cp ConfigProvider
}
func newInstConfig(ctx context.Context, opts []InstrumentationOption) (instConfig, error) {
c := instConfig{pid: -1}
var err error
for _, opt := range opts {
if opt != nil {
var e error
c, e = opt.apply(ctx, c)
err = errors.Join(err, e)
}
}
// Defaults.
if c.handler == nil {
attrs := []attribute.KeyValue{
semconv.TelemetryDistroVersionKey.String(Version()),
}
// Add additional process information for the target.
var e error
bi, e := c.pid.BuildInfo()
if e == nil {
attrs = append(attrs, semconv.ProcessRuntimeVersion(bi.GoVersion))
var compiler string
for _, setting := range bi.Settings {
if setting.Key == "-compiler" {
compiler = setting.Value
break
}
}
switch compiler {
case "":
// Ignore empty.
case "gc":
attrs = append(attrs, semconv.ProcessRuntimeName("go"))
default:
attrs = append(attrs, semconv.ProcessRuntimeName(compiler))
}
}
th, e := otelsdk.NewTraceHandler(
ctx,
otelsdk.WithEnv(),
otelsdk.WithResourceAttributes(attrs...),
)
err = errors.Join(err, e)
if th != nil {
c.handler = &pipeline.Handler{TraceHandler: th}
c.handlerClose = sync.OnceFunc(func() {
ctx, stop := signal.NotifyContext(context.Background(), os.Interrupt)
defer stop()
if err := th.Shutdown(ctx); err != nil {
c.logger.Error("failed cleanup", "error", err)
}
})
}
}
if c.sampler == nil {
c.sampler = DefaultSampler()
}
if c.logger == nil {
c.logger = newLogger(nil)
}
if c.cp == nil {
c.cp = newNoopConfigProvider(c.sampler)
}
return c, err
}
func (c instConfig) validate() error {
return c.pid.Validate()
}
// newLogger is used for testing.
var newLogger = newLoggerFunc
func newLoggerFunc(level slog.Leveler) *slog.Logger {
opts := &slog.HandlerOptions{AddSource: true, Level: level}
h := slog.NewJSONHandler(os.Stderr, opts)
return slog.New(h)
}
type fnOpt func(context.Context, instConfig) (instConfig, error)
func (o fnOpt) apply(ctx context.Context, c instConfig) (instConfig, error) { return o(ctx, c) }
// WithPID returns an [InstrumentationOption] defining the target binary for
// [Instrumentation] that is being run with the provided PID.
//
// If multiple of these options are provided to an [Instrumentation], the last
// one will be used.
func WithPID(pid int) InstrumentationOption {
return fnOpt(func(_ context.Context, c instConfig) (instConfig, error) {
c.pid = process.ID(pid)
return c, nil
})
}
var lookupEnv = os.LookupEnv
// WithEnv returns an [InstrumentationOption] that will configure
// [Instrumentation] using the values defined by the following environment
// variables:
//
// - OTEL_LOG_LEVEL: sets the default logger's minimum logging level
// - OTEL_TRACES_SAMPLER: sets the trace sampler
// - OTEL_TRACES_SAMPLER_ARG: optionally sets the trace sampler argument
//
// This option may conflict with [WithSampler] if their respective environment
// variable is defined. If more than one of these options are used, the last
// one provided to an [Instrumentation] will be used.
//
// If [WithLogger] is used, OTEL_LOG_LEVEL will not be used for the
// [Instrumentation] logger. Instead, the [slog.Logger] passed to that option
// will be used as-is.
//
// If [WithLogger] is not used, OTEL_LOG_LEVEL will be parsed and the default
// logger used by the configured [Instrumentation] will use that level as its
// minimum logging level.
func WithEnv() InstrumentationOption {
return fnOpt(func(ctx context.Context, c instConfig) (instConfig, error) {
var err error
if val, ok := lookupEnv(envLogLevelKey); c.logger == nil && ok {
var level slog.Level
if e := level.UnmarshalText([]byte(val)); e != nil {
e = fmt.Errorf("parse log level %q: %w", val, e)
err = errors.Join(err, e)
} else {
c.logger = newLogger(level)
}
}
if s, e := newSamplerFromEnv(lookupEnv); e != nil {
err = errors.Join(err, e)
} else {
c.sampler = s
}
return c, err
})
}
// WithSampler returns an [InstrumentationOption] that will configure
// an [Instrumentation] to use the provided sampler to sample OpenTelemetry traces.
//
// This currently is a no-op. It is expected to take effect in the next release.
func WithSampler(sampler Sampler) InstrumentationOption {
return fnOpt(func(_ context.Context, c instConfig) (instConfig, error) {
c.sampler = sampler
return c, nil
})
}
// WithLogger returns an [InstrumentationOption] that will configure an
// [Instrumentation] to use the provided logger.
//
// If this option is used and [WithEnv] is also used, OTEL_LOG_LEVEL is ignored
// by the configured [Instrumentation]. This passed logger takes precedence and
// is used as-is.
//
// If this option is not used, the [Instrumentation] will use an [slog.Loogger]
// backed by an [slog.JSONHandler] outputting to STDERR as a default.
func WithLogger(logger *slog.Logger) InstrumentationOption {
return fnOpt(func(_ context.Context, c instConfig) (instConfig, error) {
c.logger = logger
return c, nil
})
}
// WithConfigProvider returns an [InstrumentationOption] that will configure
// an [Instrumentation] to use the provided ConfigProvider. The ConfigProvider
// is used to provide the initial configuration and update the configuration of
// the instrumentation in runtime.
func WithConfigProvider(cp ConfigProvider) InstrumentationOption {
return fnOpt(func(_ context.Context, c instConfig) (instConfig, error) {
c.cp = cp
return c, nil
})
}
// WithHandler returns an [InstrumentationOption] that will configure an
// [Instrumentation] to use h to handle generated telemetry.
//
// If this options is not used, the Handler returned from [otelsdk.NewHandler] with
// environment configuration will be used.
func WithHandler(h *pipeline.Handler) InstrumentationOption {
return fnOpt(func(_ context.Context, c instConfig) (instConfig, error) {
if h == nil {
return c, errors.New("nil handler")
}
c.handler = h
return c, nil
})
}