-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathbacklog.go
347 lines (292 loc) · 7.26 KB
/
backlog.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
package gobrake
import (
"bytes"
"encoding/json"
"fmt"
"net/http"
"sync/atomic"
"time"
)
const (
backlogSize = 100
flushBacklogPeriod = 60 * time.Second
)
type noticeBacklog struct {
opt *NotifierOptions
notices []Notice
maxLength int
}
type apmBacklog struct {
opt *NotifierOptions
routeStats []routesOut
routeBreakdowns []breakdownsOut
queries []queriesOut
queues []queuesOut
}
var (
nb *noticeBacklog
ab *apmBacklog
apmBacklogCount int32
)
// Purge reset the backlog APM count to 0.
func purge() {
atomic.StoreInt32(&apmBacklogCount, 0)
}
// inc increase the backlog APM count by 1.
func inc() {
atomic.StoreInt32(&apmBacklogCount, getCount()+1)
}
// getCount returns the backlog APM count.
func getCount() int32 {
return atomic.LoadInt32(&apmBacklogCount)
}
// newBacklog creates a new backlog for notices and APM stats.
func newBacklog(opt *NotifierOptions) {
nb = ¬iceBacklog{
maxLength: backlogSize,
opt: opt,
}
ab = &apmBacklog{
opt: opt,
}
}
// setNoticeBacklog sets new backlog notice.
func setNoticeBacklog(notice *Notice) {
if nb.opt.DisableBacklog {
return
}
if len(nb.notices) < nb.maxLength {
nb.notices = append(nb.notices, *notice)
}
for {
<-time.After(flushBacklogPeriod)
nb.flushNoticeBacklog()
}
}
// flushNoticeBacklog sends the backlog notice after the backlog period is over.
func (nb *noticeBacklog) flushNoticeBacklog() {
buf := buffers.Get().(*bytes.Buffer)
for _, notice := range nb.notices {
err := json.NewEncoder(buf).Encode(notice)
if err != nil {
logger.Printf("Backlog notice failed = %s", err)
continue
}
req, err := http.NewRequest(
http.MethodPost,
fmt.Sprintf("%s/api/v3/projects/%d/notices",
nb.opt.Host, nb.opt.ProjectId),
buf,
)
if err != nil {
logger.Printf("Backlog notice failed = %s", err)
continue
}
setRequestHeaders(req, nb.opt.ProjectKey)
resp, err := nb.opt.HTTPClient.Do(req)
if err != nil {
logger.Printf("Backlog notice failed = %s", err)
continue
}
defer resp.Body.Close()
if resp.StatusCode > 400 {
logger.Printf("Backlog notice failed = %q", resp.Status)
}
buf.Reset()
}
nb.notices = nil
}
// setRouteStatBacklog sets new backlog route stat.
func setRouteStatBacklog(routeStat routesOut) {
if ab.opt.DisableBacklog {
return
}
if getCount() < backlogSize {
ab.routeStats = append(ab.routeStats, routeStat)
inc()
}
for {
<-time.After(flushBacklogPeriod)
ab.flushRouteStatBacklog()
}
}
// flushRouteStatBacklog sends the backlog route stats after the backlog period is over.
func (ab *apmBacklog) flushRouteStatBacklog() {
buf := buffers.Get().(*bytes.Buffer)
for _, routeStat := range ab.routeStats {
err := json.NewEncoder(buf).Encode(routeStat)
if err != nil {
logger.Printf("Backlog route stat failed = %s", err)
continue
}
req, err := http.NewRequest(
http.MethodPut,
fmt.Sprintf("%s/api/v5/projects/%d/routes-stats",
ab.opt.APMHost, ab.opt.ProjectId),
buf,
)
if err != nil {
logger.Printf("Backlog route stat failed = %s", err)
continue
}
setRequestHeaders(req, ab.opt.ProjectKey)
resp, err := ab.opt.HTTPClient.Do(req)
if err != nil {
logger.Printf("Backlog route stat failed = %s", err)
continue
}
defer resp.Body.Close()
if resp.StatusCode > 400 {
logger.Printf("Backlog route stat failed = %q", resp.Status)
}
buf.Reset()
}
ab.routeStats = nil
purge()
}
// setRouteBreakdownBacklog sets new backlog route breakdown.
func setRouteBreakdownBacklog(routeBreakdown breakdownsOut) {
if ab.opt.DisableBacklog {
return
}
if getCount() < backlogSize {
ab.routeBreakdowns = append(ab.routeBreakdowns, routeBreakdown)
inc()
}
for {
<-time.After(flushBacklogPeriod)
ab.flushRouteBreakdownBacklog()
}
}
// flushBacklogRouteBreakdown sends the backlog route breakdowns after the backlog period is over.
func (ab *apmBacklog) flushRouteBreakdownBacklog() {
buf := buffers.Get().(*bytes.Buffer)
for _, routeBreakdown := range ab.routeBreakdowns {
err := json.NewEncoder(buf).Encode(routeBreakdown)
if err != nil {
logger.Printf("Backlog route stat failed = %s", err)
continue
}
req, err := http.NewRequest(
http.MethodPut,
fmt.Sprintf("%s/api/v5/projects/%d/routes-breakdowns",
ab.opt.APMHost, ab.opt.ProjectId),
buf,
)
if err != nil {
logger.Printf("Backlog route stat failed = %s", err)
continue
}
setRequestHeaders(req, ab.opt.ProjectKey)
resp, err := ab.opt.HTTPClient.Do(req)
if err != nil {
logger.Printf("Backlog route stat failed = %s", err)
continue
}
defer resp.Body.Close()
if resp.StatusCode > 400 {
logger.Printf("Backlog route stat failed = %q", resp.Status)
}
buf.Reset()
}
ab.routeBreakdowns = nil
}
// setQueryBacklog sets new backlog query.
func setQueryBacklog(query queriesOut) {
if ab.opt.DisableBacklog {
return
}
if getCount() < backlogSize {
ab.queries = append(ab.queries, query)
inc()
}
for {
<-time.After(flushBacklogPeriod)
ab.flushQueryBacklog()
}
}
// flushQueryBacklog sends the backlog query after the backlog period is over.
func (ab *apmBacklog) flushQueryBacklog() {
buf := buffers.Get().(*bytes.Buffer)
for _, query := range ab.queries {
err := json.NewEncoder(buf).Encode(query)
if err != nil {
logger.Printf("Backlog query failed = %s", err)
continue
}
req, err := http.NewRequest(
http.MethodPut,
fmt.Sprintf("%s/api/v5/projects/%d/queries-stats",
ab.opt.APMHost, ab.opt.ProjectId),
buf,
)
if err != nil {
logger.Printf("Backlog query failed = %s", err)
continue
}
setRequestHeaders(req, ab.opt.ProjectKey)
resp, err := ab.opt.HTTPClient.Do(req)
if err != nil {
logger.Printf("Backlog query failed = %s", err)
continue
}
defer resp.Body.Close()
if resp.StatusCode > 400 {
logger.Printf("Backlog query failed = %q", resp.Status)
}
buf.Reset()
}
ab.queries = nil
}
// setQueueBacklog sets new queue backlog.
func setQueueBacklog(queue queuesOut) {
if ab.opt.DisableBacklog {
return
}
if getCount() < backlogSize {
ab.queues = append(ab.queues, queue)
inc()
}
for {
<-time.After(flushBacklogPeriod)
ab.flushQueueBacklog()
}
}
// flushQueueBacklog sends the queue backlog after the backlog period is over.
func (ab *apmBacklog) flushQueueBacklog() {
buf := buffers.Get().(*bytes.Buffer)
for _, queue := range ab.queues {
err := json.NewEncoder(buf).Encode(queue)
if err != nil {
logger.Printf("Backlog queue failed = %s", err)
continue
}
req, err := http.NewRequest(
http.MethodPut,
fmt.Sprintf("%s/api/v5/projects/%d/queues-stats",
ab.opt.APMHost, ab.opt.ProjectId),
buf,
)
if err != nil {
logger.Printf("Backlog queue failed = %s", err)
continue
}
setRequestHeaders(req, ab.opt.ProjectKey)
resp, err := ab.opt.HTTPClient.Do(req)
if err != nil {
logger.Printf("Backlog queue failed = %s", err)
continue
}
defer resp.Body.Close()
if resp.StatusCode > 400 {
logger.Printf("Backlog queue failed = %q", resp.Status)
}
buf.Reset()
}
ab.queues = nil
}
func setRequestHeaders(req *http.Request, projectKey string) {
req.Header.Set("Authorization", "Bearer "+projectKey)
req.Header.Set("Content-Type", "application/json")
req.Header.Set("User-Agent", userAgent)
}