-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathopentracing.go
145 lines (115 loc) · 3.49 KB
/
opentracing.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
package opentracing
import (
"fmt"
"net/http"
"strings"
"time"
"github.com/alexfalkowski/go-service/meta"
sstrings "github.com/alexfalkowski/go-service/strings"
"github.com/alexfalkowski/go-service/trace/opentracing"
"github.com/alexfalkowski/go-service/version"
otr "github.com/opentracing/opentracing-go"
"github.com/opentracing/opentracing-go/ext"
"go.uber.org/fx"
)
const (
httpURL = "http.url"
httpMethod = "http.method"
httpDeadline = "http.deadline"
httpStatusCode = "http.status_code"
component = "component"
httpComponent = "http"
)
// TracerParams for otr.
type TracerParams struct {
fx.In
Lifecycle fx.Lifecycle
Config *opentracing.Config
Version version.Version
}
// NewTracer for otr.
func NewTracer(params TracerParams) (Tracer, error) {
return opentracing.NewTracer(opentracing.TracerParams{Lifecycle: params.Lifecycle, Name: "http", Config: params.Config, Version: params.Version})
}
// Tracer for otr.
type Tracer otr.Tracer
// Handler for otr.
type Handler struct {
tracer Tracer
http.Handler
}
// NewHandler for otr.
func NewHandler(tracer Tracer, handler http.Handler) *Handler {
return &Handler{tracer: tracer, Handler: handler}
}
// ServeHTTP for otr.
func (h *Handler) ServeHTTP(resp http.ResponseWriter, req *http.Request) {
service, method := req.URL.Path, strings.ToLower(req.Method)
if sstrings.IsHealth(service) {
h.Handler.ServeHTTP(resp, req)
return
}
ctx := req.Context()
operationName := fmt.Sprintf("%s %s", method, service)
carrier := otr.HTTPHeadersCarrier(req.Header)
traceCtx, _ := h.tracer.Extract(otr.HTTPHeaders, carrier)
opts := []otr.StartSpanOption{
ext.RPCServerOption(traceCtx),
otr.Tag{Key: httpURL, Value: service},
otr.Tag{Key: httpMethod, Value: method},
otr.Tag{Key: component, Value: httpComponent},
ext.SpanKindRPCServer,
}
span := h.tracer.StartSpan(operationName, opts...)
defer span.Finish()
if d, ok := ctx.Deadline(); ok {
span.SetTag(httpDeadline, d.UTC().Format(time.RFC3339))
}
ctx = otr.ContextWithSpan(ctx, span)
h.Handler.ServeHTTP(resp, req.WithContext(ctx))
for k, v := range meta.Attributes(ctx) {
span.SetTag(k, v)
}
}
// NewRoundTripper for otr.
func NewRoundTripper(tracer Tracer, hrt http.RoundTripper) *RoundTripper {
return &RoundTripper{tracer: tracer, RoundTripper: hrt}
}
// RoundTripper for otr.
type RoundTripper struct {
tracer Tracer
http.RoundTripper
}
func (r *RoundTripper) RoundTrip(req *http.Request) (*http.Response, error) {
if sstrings.IsHealth(req.URL.String()) {
return r.RoundTripper.RoundTrip(req)
}
service, method := req.URL.Hostname(), strings.ToLower(req.Method)
ctx := req.Context()
operationName := fmt.Sprintf("%s %s", method, service)
opts := []otr.StartSpanOption{
otr.Tag{Key: httpURL, Value: service},
otr.Tag{Key: httpMethod, Value: method},
otr.Tag{Key: component, Value: httpComponent},
ext.SpanKindRPCClient,
}
span, ctx := otr.StartSpanFromContextWithTracer(ctx, r.tracer, operationName, opts...)
defer span.Finish()
if d, ok := ctx.Deadline(); ok {
span.SetTag(httpDeadline, d.UTC().Format(time.RFC3339))
}
carrier := otr.HTTPHeadersCarrier(req.Header)
if err := r.tracer.Inject(span.Context(), otr.HTTPHeaders, carrier); err != nil {
return nil, err
}
resp, err := r.RoundTripper.RoundTrip(req.WithContext(ctx))
for k, v := range meta.Attributes(ctx) {
span.SetTag(k, v)
}
if err != nil {
opentracing.SetError(span, err)
return nil, err
}
span.SetTag(httpStatusCode, resp.StatusCode)
return resp, nil
}