forked from open-telemetry/opentelemetry-go-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathendpoint.go
129 lines (102 loc) · 3.47 KB
/
endpoint.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
// Copyright The OpenTelemetry Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Based on https://github.com/go-kit/kit/blob/3796a6b25f5c6c545454d3ed7187c4ced258083d/tracing/opencensus/endpoint.go
package otelkit
import (
"context"
"go.opentelemetry.io/otel"
"go.opentelemetry.io/otel/attribute"
"go.opentelemetry.io/otel/codes"
"go.opentelemetry.io/otel/trace"
"github.com/go-kit/kit/endpoint"
"github.com/go-kit/kit/sd/lb"
)
const (
tracerName = "go.opentelemetry.io/contrib/instrumentation/github.com/go-kit/kit/otelkit"
// defaultSpanName is the default endpoint span name to use.
defaultSpanName = "gokit/endpoint"
)
// EndpointMiddleware returns an Endpoint middleware, tracing a Go kit endpoint.
// This endpoint middleware should be used in combination with a Go kit Transport
// tracing middleware, generic OpenTelemetry transport middleware or custom before
// and after transport functions.
func EndpointMiddleware(options ...Option) endpoint.Middleware {
cfg := &config{}
for _, o := range options {
o.apply(cfg)
}
if cfg.TracerProvider == nil {
cfg.TracerProvider = otel.GetTracerProvider()
}
tracer := cfg.TracerProvider.Tracer(
tracerName,
trace.WithInstrumentationVersion(SemVersion()),
)
return func(next endpoint.Endpoint) endpoint.Endpoint {
return func(ctx context.Context, request interface{}) (response interface{}, err error) {
operation := cfg.Operation
if cfg.GetOperation != nil {
if newOperation := cfg.GetOperation(ctx, operation); newOperation != "" {
operation = newOperation
}
}
spanName := operation
if spanName == "" {
spanName = defaultSpanName
}
opts := []trace.SpanStartOption{
trace.WithAttributes(cfg.Attributes...),
trace.WithSpanKind(trace.SpanKindServer),
}
if cfg.GetAttributes != nil {
opts = append(opts, trace.WithAttributes(cfg.GetAttributes(ctx)...))
}
ctx, span := tracer.Start(ctx, spanName, opts...)
defer span.End()
defer func() {
if err != nil {
if lberr, ok := err.(lb.RetryError); ok {
// Handle errors originating from lb.Retry.
for idx, rawErr := range lberr.RawErrors {
span.RecordError(rawErr, trace.WithAttributes(
attribute.Int("gokit.lb.retry.count", idx+1),
))
}
span.RecordError(lberr.Final)
span.SetStatus(codes.Error, lberr.Error())
return
}
// generic error
span.RecordError(err)
span.SetStatus(codes.Error, err.Error())
return
}
// Test for business error. Business errors are often
// successful requests carrying a business failure that
// the client can act upon and therefore do not count
// as failed requests.
if res, ok := response.(endpoint.Failer); ok && res.Failed() != nil {
span.RecordError(res.Failed())
if !cfg.IgnoreBusinessError {
span.SetStatus(codes.Error, res.Failed().Error())
}
return
}
// no errors identified
}()
response, err = next(ctx, request)
return
}
}
}