forked from stripe/veneur
-
Notifications
You must be signed in to change notification settings - Fork 0
/
handlers_global.go
214 lines (188 loc) · 7.11 KB
/
handlers_global.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
package veneur
import (
"compress/zlib"
"context"
"encoding/json"
"errors"
"io"
"net/http"
"reflect"
"strings"
"time"
"github.com/sirupsen/logrus"
"github.com/stripe/veneur/samplers"
"github.com/stripe/veneur/ssf"
"github.com/stripe/veneur/trace"
"github.com/stripe/veneur/trace/metrics"
)
type contextHandler func(c context.Context, w http.ResponseWriter, r *http.Request)
func (ch contextHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
ctx := context.Background()
ch(ctx, w, r)
}
func handleProxy(p *Proxy) http.Handler {
return contextHandler(func(ctx context.Context, w http.ResponseWriter, r *http.Request) {
log.WithFields(logrus.Fields{
"path": r.URL.Path,
"host": r.URL.Host,
}).Debug("Importing metrics on proxy")
span, jsonMetrics, err := unmarshalMetricsFromHTTP(ctx, p.TraceClient, w, r)
if err != nil {
log.WithError(err).Error("Error unmarshalling metrics in proxy import")
return
}
// the server usually waits for this to return before finalizing the
// response, so this part must be done asynchronously
go p.ProxyMetrics(span.Attach(ctx), jsonMetrics, strings.SplitN(r.RemoteAddr, ":", 2)[0])
})
}
func handleSpans(p *Proxy) http.Handler {
return contextHandler(func(ctx context.Context, w http.ResponseWriter, r *http.Request) {
span, traces, err := handleTraceRequest(ctx, p.TraceClient, w, r)
if err != nil {
return
}
// the server usually waits for this to return before finalizing the
// response, so this part must be done asynchronously
go p.ProxyTraces(span.Attach(ctx), traces)
})
}
// handleImport generates the handler that responds to POST requests submitting
// metrics to the global veneur instance.
func handleImport(s *Server) http.Handler {
return contextHandler(func(ctx context.Context, w http.ResponseWriter, r *http.Request) {
span, jsonMetrics, err := unmarshalMetricsFromHTTP(ctx, s.TraceClient, w, r)
if err != nil {
log.WithError(err).Error("Error unmarshalling metrics in global import")
span.Add(ssf.Count("import.unmarshal.errors_total", 1, nil))
return
}
// the server usually waits for this to return before finalizing the
// response, so this part must be done asynchronously
go s.ImportMetrics(span.Attach(ctx), jsonMetrics)
})
}
func handleTraceRequest(ctx context.Context, client *trace.Client, w http.ResponseWriter, r *http.Request) (*trace.Span, []DatadogTraceSpan, error) {
var (
traces []DatadogTraceSpan
err error
span *trace.Span
)
span, err = tracer.ExtractRequestChild("/spans", r, "veneur.opentracing.spans")
if err != nil {
log.WithError(err).Info("Could not extract span from request")
span = tracer.StartSpan("/spans").(*trace.Span)
} else {
log.WithField("trace", span.Trace).Info("Extracted span from request")
}
defer span.ClientFinish(client)
innerLogger := log.WithField("client", r.RemoteAddr)
if err = json.NewDecoder(r.Body).Decode(&traces); err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
span.Error(err)
innerLogger.WithError(err).Error("Could not decode /spans request")
metrics.ReportOne(client, ssf.Count("import.request_error_total", 1, map[string]string{"cause": "json"}))
return nil, nil, err
}
if len(traces) == 0 {
const msg = "Received empty /spans request"
http.Error(w, msg, http.StatusBadRequest)
span.Error(errors.New(msg))
innerLogger.WithError(err).Error(msg)
return nil, nil, err
}
w.WriteHeader(http.StatusAccepted)
metrics.ReportOne(client, ssf.Timing("spans.response_duration_ns",
time.Since(span.Start), time.Nanosecond,
map[string]string{"part": "request"}))
return span, traces, nil
}
// unmarshalMetricsFromHTTP takes care of the common need to unmarshal a slice of metrics from a request body,
// dealing with error handling, decoding, tracing, and the associated metrics.
func unmarshalMetricsFromHTTP(ctx context.Context, client *trace.Client, w http.ResponseWriter, r *http.Request) (*trace.Span, []samplers.JSONMetric, error) {
var (
jsonMetrics []samplers.JSONMetric
body io.ReadCloser
err error
encoding = r.Header.Get("Content-Encoding")
span *trace.Span
)
span, err = tracer.ExtractRequestChild("/import", r, "veneur.opentracing.import")
if err != nil {
log.WithError(err).Debug("Could not extract span from request")
span = tracer.StartSpan("veneur.opentracing.import").(*trace.Span)
} else {
log.WithField("trace", span.Trace).Debug("Extracted span from request")
}
defer span.ClientFinish(client)
innerLogger := log.WithField("client", r.RemoteAddr)
switch encLogger := innerLogger.WithField("encoding", encoding); encoding {
case "":
body = r.Body
encoding = "identity"
case "deflate":
body, err = zlib.NewReader(r.Body)
if err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
span.Error(err)
encLogger.WithError(err).Error("Could not read compressed request body")
span.Add(ssf.Count("import.request_error_total", 1, map[string]string{"cause": "deflate"}))
return span, nil, err
}
defer body.Close()
default:
http.Error(w, encoding, http.StatusUnsupportedMediaType)
span.Error(errors.New("Could not determine content-encoding of request"))
encLogger.Error("Could not determine content-encoding of request")
span.Add(ssf.Count("import.request_error_total", 1, map[string]string{"cause": "unknown_content_encoding"}))
return span, nil, err
}
span.Add(ssf.Count("import.bytes", float32(r.ContentLength), nil))
if err = json.NewDecoder(body).Decode(&jsonMetrics); err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
span.Error(err)
innerLogger.WithError(err).Error("Could not decode /import request")
span.Add(ssf.Count("import.request_error_total", 1, map[string]string{"cause": "json"}))
return span, nil, err
}
if len(jsonMetrics) == 0 {
const msg = "Received empty /import request"
http.Error(w, msg, http.StatusBadRequest)
span.Error(errors.New(msg))
innerLogger.WithError(err).Error(msg)
return span, nil, err
}
// We want to make sure we have at least one entry
// that is not empty (ie, all fields are the zero value)
// because that is usually the sign that we are unmarshalling
// into the wrong struct type
if !nonEmpty(span.Attach(ctx), client, jsonMetrics) {
const msg = "Received empty or improperly-formed metrics"
http.Error(w, msg, http.StatusBadRequest)
span.Error(errors.New(msg))
innerLogger.Error(msg)
return nil, nil, err
}
w.WriteHeader(http.StatusAccepted)
span.Add(ssf.RandomlySample(0.1,
ssf.Timing("import.response_duration_ns", time.Since(span.Start),
time.Nanosecond, map[string]string{
"part": "request",
"encoding": encoding,
}))...)
return span, jsonMetrics, nil
}
// nonEmpty returns true if there is at least one non-empty
// metric
func nonEmpty(ctx context.Context, client *trace.Client, jsonMetrics []samplers.JSONMetric) bool {
span, _ := trace.StartSpanFromContext(ctx, "veneur.opentracing.import.nonEmpty")
defer span.ClientFinish(client)
sentinel := samplers.JSONMetric{}
for _, metric := range jsonMetrics {
if !reflect.DeepEqual(sentinel, metric) {
// we have found at least one entry that is properly formed
return true
}
}
return false
}