forked from veepee-oss/influxdb-relay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttp_handlers.go
466 lines (380 loc) · 10.3 KB
/
http_handlers.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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
package relay
import (
"bytes"
"errors"
"log"
"net/http"
"sync"
"time"
"github.com/influxdata/influxdb/models"
)
type status struct {
Status map[string]stats `json:"status"`
}
func (h *HTTP) handleStatus(w http.ResponseWriter, r *http.Request, _ time.Time) {
if r.Method == http.MethodGet || r.Method == http.MethodHead {
st := status{Status: make(map[string]stats)}
for _, b := range h.backends {
st.Status[b.name] = b.poster.getStats()
}
jsonResponse(w, response{http.StatusOK, st})
} else {
jsonResponse(w, response{http.StatusMethodNotAllowed, http.StatusText(http.StatusMethodNotAllowed)})
return
}
}
func (h *HTTP) handlePing(w http.ResponseWriter, r *http.Request, _ time.Time) {
if r.Method == http.MethodGet || r.Method == http.MethodHead {
for key, value := range h.pingResponseHeaders {
w.Header().Add(key, value)
}
w.WriteHeader(h.pingResponseCode)
} else {
jsonResponse(w, response{http.StatusMethodNotAllowed, http.StatusText(http.StatusMethodNotAllowed)})
return
}
}
type health struct {
name string
err error
duration time.Duration
}
type healthReport struct {
Status string `json:"status"`
Healthy map[string]string `json:"healthy,omitempty"`
Problem map[string]string `json:"problem,omitempty"`
}
func (h *HTTP) handleHealth(w http.ResponseWriter, _ *http.Request, _ time.Time) {
var responses = make(chan health, len(h.backends))
var wg sync.WaitGroup
var validEndpoints = 0
wg.Add(len(h.backends))
for _, b := range h.backends {
b := b
validEndpoints++
go func() {
defer wg.Done()
var healthCheck = health{name: b.name, err: nil}
client := http.Client{
Timeout: h.healthTimeout,
}
start := time.Now()
res, err := client.Get(b.location + b.endpoints.Ping)
if err != nil {
if h.log {
h.logger.Println(err)
}
healthCheck.err = err
responses <- healthCheck
return
}
if res.StatusCode/100 != 2 {
healthCheck.err = errors.New("Unexpected error code " + string(res.StatusCode))
}
healthCheck.duration = time.Since(start)
responses <- healthCheck
return
}()
}
go func() {
wg.Wait()
close(responses)
}()
nbDown := 0
report := healthReport{}
for r := range responses {
if r.err == nil {
if report.Healthy == nil {
report.Healthy = make(map[string]string)
}
report.Healthy[r.name] = "OK. Time taken " + r.duration.String()
} else {
if report.Problem == nil {
report.Problem = make(map[string]string)
}
report.Problem[r.name] = "KO. " + r.err.Error()
nbDown++
}
}
switch {
case nbDown == validEndpoints:
report.Status = "critical"
case nbDown >= 1:
report.Status = "problem"
case nbDown == 0:
report.Status = "healthy"
}
response := response{code: 200, body: report}
jsonResponse(w, response)
return
}
func (h *HTTP) handleAdmin(w http.ResponseWriter, r *http.Request, _ time.Time) {
// Client to perform the raw queries
client := http.Client{}
// Base body for all requests
baseBody := bytes.Buffer{}
_, err := baseBody.ReadFrom(r.Body)
if err != nil {
log.Printf("relay %q: could not read body: %v", h.Name(), err)
return
}
if r.Method != http.MethodPost {
// Bad method
w.Header().Set("Allow", http.MethodPost)
jsonResponse(w, response{http.StatusMethodNotAllowed, http.StatusText(http.StatusMethodNotAllowed)})
return
}
// Responses
var responses = make(chan *http.Response, len(h.backends))
// Associated waitgroup
var wg sync.WaitGroup
wg.Add(len(h.backends))
// Iterate over all backends
for _, b := range h.backends {
b := b
go func() {
defer wg.Done()
bodyBytes := baseBody
// Create new request
// Update location according to backend
// Forward body
req, err := http.NewRequest("POST", b.location+b.endpoints.Query, &bodyBytes)
if err != nil {
log.Printf("problem posting to relay %q backend %q: could not prepare request: %v", h.Name(), b.name, err)
responses <- &http.Response{}
return
}
// Forward headers
req.Header = r.Header
// Forward the request
resp, err := client.Do(req)
if err != nil {
// Internal error
log.Printf("problem posting to relay %q backend %q: %v", h.Name(), b.name, err)
// So empty response
responses <- &http.Response{}
} else {
if resp.StatusCode/100 == 5 {
// HTTP error
log.Printf("5xx response for relay %q backend %q: %v", h.Name(), b.name, resp.StatusCode)
}
// Get response
responses <- resp
}
}()
}
// Wait for requests
go func() {
wg.Wait()
close(responses)
}()
var errResponse *responseData
for resp := range responses {
switch resp.StatusCode / 100 {
case 2:
w.WriteHeader(http.StatusNoContent)
return
case 4:
// User error
resp.Write(w)
return
default:
// Hold on to one of the responses to return back to the client
errResponse = nil
}
}
// No successful writes
if errResponse == nil {
// Failed to make any valid request...
jsonResponse(w, response{http.StatusServiceUnavailable, "unable to forward query"})
return
}
}
func (h *HTTP) handleFlush(w http.ResponseWriter, r *http.Request, start time.Time) {
if h.log {
h.logger.Println("Flushing buffers...")
}
for _, b := range h.backends {
r := b.getRetryBuffer()
if r != nil {
if h.log {
h.logger.Println("Flushing " + b.name)
} else {
h.logger.Println("NOT flushing " + b.name + " (is empty)")
}
r.empty()
}
}
jsonResponse(w, response{http.StatusOK, http.StatusText(http.StatusOK)})
}
func (h *HTTP) handleStandard(w http.ResponseWriter, r *http.Request, start time.Time) {
if r.Method != http.MethodPost {
w.Header().Set("Allow", http.MethodPost)
if r.Method == http.MethodOptions {
w.WriteHeader(http.StatusNoContent)
} else {
jsonResponse(w, response{http.StatusMethodNotAllowed, http.StatusText(http.StatusMethodNotAllowed)})
return
}
}
queryParams := r.URL.Query()
bodyBuf := getBuf()
_, _ = bodyBuf.ReadFrom(r.Body)
precision := queryParams.Get("precision")
points, err := models.ParsePointsWithPrecision(bodyBuf.Bytes(), start, precision)
if err != nil {
putBuf(bodyBuf)
log.Printf("parse points error: %s", err)
jsonResponse(w, response{http.StatusBadRequest, "unable to parse points"})
return
}
outBuf := getBuf()
for _, p := range points {
// Those two functions never return any errors, let's just ignore the return value
_, _ = outBuf.WriteString(p.PrecisionString(precision))
_ = outBuf.WriteByte('\n')
}
// done with the input points
putBuf(bodyBuf)
// normalize query string
query := queryParams.Encode()
outBytes := outBuf.Bytes()
// check for authorization performed via the header
authHeader := r.Header.Get("Authorization")
var wg sync.WaitGroup
wg.Add(len(h.backends))
var responses = make(chan *responseData, len(h.backends))
for _, b := range h.backends {
b := b
// Don't do the request if the tags do not match the filters
err := b.validateRegexps(points)
if err != nil {
if h.log {
h.logger.Printf("request invalidated by regular expression for backend: %s", b.name)
h.logger.Printf(err.Error())
}
wg.Done()
continue
}
go func() {
defer wg.Done()
resp, err := b.post(outBytes, query, authHeader, b.endpoints.Write)
if err != nil {
log.Printf("Problem posting to relay %q backend %q: %v", h.Name(), b.name, err)
if h.log {
h.logger.Printf("Content: %s", bodyBuf.String())
}
responses <- &responseData{}
} else {
if resp.StatusCode/100 == 5 {
log.Printf("5xx response for relay %q backend %q: %v", h.Name(), b.name, resp.StatusCode)
}
responses <- resp
}
}()
}
go func() {
wg.Wait()
close(responses)
putBuf(outBuf)
}()
var errResponse *responseData
w.Header().Set("Content-Type", "text/plain")
for resp := range responses {
switch resp.StatusCode / 100 {
case 2:
// Status accepted means buffering,
if resp.StatusCode == http.StatusAccepted {
if h.log {
h.logger.Printf("could not reach relay %q, buffering...", h.Name())
}
w.WriteHeader(http.StatusAccepted)
return
}
w.WriteHeader(http.StatusNoContent)
return
case 4:
// User error
resp.Write(w)
return
default:
// Hold on to one of the responses to return back to the client
errResponse = nil
}
}
// No successful writes
if errResponse == nil {
// Failed to make any valid request...
jsonResponse(w, response{http.StatusServiceUnavailable, "unable to write points"})
return
}
}
func (h *HTTP) handleProm(w http.ResponseWriter, r *http.Request, _ time.Time) {
if r.Method != http.MethodPost {
w.Header().Set("Allow", http.MethodPost)
if r.Method == http.MethodOptions {
w.WriteHeader(http.StatusNoContent)
} else {
jsonResponse(w, response{http.StatusMethodNotAllowed, http.StatusText(http.StatusMethodNotAllowed)})
return
}
}
authHeader := r.Header.Get("Authorization")
bodyBuf := getBuf()
_, _ = bodyBuf.ReadFrom(r.Body)
outBytes := bodyBuf.Bytes()
var wg sync.WaitGroup
wg.Add(len(h.backends))
var responses = make(chan *responseData, len(h.backends))
for _, b := range h.backends {
b := b
go func() {
defer wg.Done()
resp, err := b.post(outBytes, r.URL.RawQuery, authHeader, b.endpoints.PromWrite)
if err != nil {
log.Printf("problem posting to relay %q backend %q: %v", h.Name(), b.name, err)
responses <- &responseData{}
} else {
if resp.StatusCode/100 == 5 {
log.Printf("5xx response for relay %q backend %q: %v", h.Name(), b.name, resp.StatusCode)
}
responses <- resp
}
}()
}
go func() {
wg.Wait()
close(responses)
putBuf(bodyBuf)
}()
var errResponse *responseData
w.Header().Set("Content-Type", "text/plain")
for resp := range responses {
switch resp.StatusCode / 100 {
case 2:
// Status accepted means buffering,
if resp.StatusCode == http.StatusAccepted {
if h.log {
h.logger.Printf("could not reach relay %q, buffering...", h.Name())
}
w.WriteHeader(http.StatusAccepted)
return
}
w.WriteHeader(http.StatusNoContent)
return
case 4:
// User error
resp.Write(w)
return
default:
// Hold on to one of the responses to return back to the client
errResponse = nil
}
}
// No successful writes
if errResponse == nil {
// Failed to make any valid request...
jsonResponse(w, response{http.StatusServiceUnavailable, "unable to write points"})
return
}
}