-
Notifications
You must be signed in to change notification settings - Fork 195
/
breakdown_test.go
514 lines (426 loc) · 19 KB
/
breakdown_test.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
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
// Licensed to Elasticsearch B.V. under one or more contributor
// license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright
// ownership. Elasticsearch B.V. licenses this file to you 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.
package apm_test
import (
"context"
"fmt"
"os"
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"go.elastic.co/apm/v2"
"go.elastic.co/apm/v2/apmtest"
"go.elastic.co/apm/v2/model"
"go.elastic.co/apm/v2/transport/transporttest"
)
func TestBreakdownMetrics_NonSampled(t *testing.T) {
tracer, transport := transporttest.NewRecorderTracer()
defer tracer.Close()
// Non-sampled transactions and their dropped spans still attribute to breakdown metrics.
tracer.SetSampler(apm.NewRatioSampler(0))
t0 := time.Now()
tx := tracer.StartTransactionOptions("test", "request", apm.TransactionOptions{Start: t0})
span := tx.StartSpanOptions("whatever", "db.mysql", apm.SpanOptions{Start: t0.Add(10 * time.Millisecond)})
span.Duration = 10 * time.Millisecond // t0 + 20ms
span.End()
tx.Duration = 30 * time.Millisecond
tx.End()
tracer.Flush(nil)
tracer.SendMetrics(nil)
assertBreakdownMetrics(t, []model.Metrics{
spanSelfTimeMetrics("test", "request", "app", "", 1, 20*time.Millisecond),
spanSelfTimeMetrics("test", "request", "db", "mysql", 1, 10*time.Millisecond),
}, payloadsBreakdownMetrics(transport))
}
func TestBreakdownMetrics_SpanDropped(t *testing.T) {
tracer, transport := transporttest.NewRecorderTracer()
defer tracer.Close()
// Dropped spans still attribute to breakdown metrics.
tracer.SetMaxSpans(1)
t0 := time.Now()
tx := tracer.StartTransactionOptions("test", "request", apm.TransactionOptions{Start: t0})
var spans []*apm.Span
for i := 0; i < 2; i++ {
span := tx.StartSpanOptions("whatever", "db.mysql", apm.SpanOptions{Start: t0.Add(10 * time.Millisecond)})
spans = append(spans, span)
}
for _, span := range spans {
span.Duration = 10 * time.Millisecond // t0 + 20ms
span.End()
}
tx.Duration = 30 * time.Millisecond
tx.End()
tracer.Flush(nil)
tracer.SendMetrics(nil)
assertBreakdownMetrics(t, []model.Metrics{
spanSelfTimeMetrics("test", "request", "app", "", 1, 20*time.Millisecond),
spanSelfTimeMetrics("test", "request", "db", "mysql", 2, 20*time.Millisecond),
}, payloadsBreakdownMetrics(transport))
}
func TestBreakdownMetrics_MetricsLimit(t *testing.T) {
tracer, transport := transporttest.NewRecorderTracer()
defer tracer.Close()
var logger apmtest.RecordLogger
tracer.SetLogger(&logger)
for i := 0; i < 3000; i++ {
tx := tracer.StartTransaction(fmt.Sprintf("%d", i), "request")
tx.End()
}
tracer.Flush(nil)
tracer.SendMetrics(nil)
// Make sure there's just one warning logged.
var warnings []apmtest.LogRecord
for _, record := range logger.Records {
if record.Level == "warning" {
warnings = append(warnings, record)
}
}
require.Len(t, warnings, 1)
assert.Regexp(t, "The limit of 1000 breakdown (.|\n)*", warnings[0].Message)
// There should be 1000 breakdown metrics keys buckets retained
// in-memory.
metrics := payloadsBreakdownMetrics(transport)
assert.Len(t, metrics, 1000)
}
func TestBreakdownMetrics_TransactionDropped(t *testing.T) {
tracer, transport := transporttest.NewRecorderTracer()
defer tracer.Close()
// Send transactions until one gets dropped, so we can check that
// the dropped transactions are included in the breakdown.
var count int
for tracer.Stats().TransactionsDropped == 0 {
for i := 0; i < 1000; i++ {
tx := tracer.StartTransaction("test", "request")
tx.Duration = 10 * time.Millisecond
tx.End()
count++
}
}
tracer.Flush(nil)
tracer.SendMetrics(nil)
assertBreakdownMetrics(t, []model.Metrics{
spanSelfTimeMetrics("test", "request", "app", "", count, time.Duration(count)*10*time.Millisecond),
}, payloadsBreakdownMetrics(transport))
}
func TestBreakdownMetrics_Disabled(t *testing.T) {
os.Setenv("ELASTIC_APM_BREAKDOWN_METRICS", "false")
defer os.Unsetenv("ELASTIC_APM_BREAKDOWN_METRICS")
tracer, transport := transporttest.NewRecorderTracer()
defer tracer.Close()
t0 := time.Now()
tx := tracer.StartTransactionOptions("test", "request", apm.TransactionOptions{Start: t0})
span := tx.StartSpanOptions("whatever", "db.mysql", apm.SpanOptions{Start: t0.Add(10 * time.Millisecond)})
span.Duration = 10 * time.Millisecond // t0 + 20ms
span.End()
tx.Duration = 30 * time.Millisecond
tx.End()
tracer.Flush(nil)
tracer.SendMetrics(nil)
assertBreakdownMetrics(t, []model.Metrics{}, payloadsBreakdownMetrics(transport))
}
func TestBreakdownMetrics_AcceptanceTest1(t *testing.T) {
// total self type
// ██████████████████████████████ 30 30 transaction
// 10 20 30
tracer, transport := transporttest.NewRecorderTracer()
defer tracer.Close()
tx := tracer.StartTransaction("test", "request")
tx.Duration = 30 * time.Millisecond
tx.End()
tracer.Flush(nil)
tracer.SendMetrics(nil)
assertBreakdownMetrics(t, []model.Metrics{
spanSelfTimeMetrics("test", "request", "app", "", 1, 30*time.Millisecond),
}, payloadsBreakdownMetrics(transport))
}
func TestBreakdownMetrics_AcceptanceTest2(t *testing.T) {
// total self type
// ██████████░░░░░░░░░░██████████ 30 20 transaction
// └─────────██████████ 10 10 db.mysql
// 10 20 30
tracer, transport := transporttest.NewRecorderTracer()
defer tracer.Close()
t0 := time.Now()
tx := tracer.StartTransactionOptions("test", "request", apm.TransactionOptions{Start: t0})
span := tx.StartSpanOptions("whatever", "db.mysql", apm.SpanOptions{Start: t0.Add(10 * time.Millisecond)})
span.Duration = 10 * time.Millisecond // t0 + 20ms
span.End()
tx.Duration = 30 * time.Millisecond // t0 + 30ms
tx.End()
tracer.Flush(nil)
tracer.SendMetrics(nil)
assertBreakdownMetrics(t, []model.Metrics{
spanSelfTimeMetrics("test", "request", "app", "", 1, 20*time.Millisecond),
spanSelfTimeMetrics("test", "request", "db", "mysql", 1, 10*time.Millisecond),
}, payloadsBreakdownMetrics(transport))
}
func TestBreakdownMetrics_AcceptanceTest3(t *testing.T) {
// total self type
// ██████████░░░░░░░░░░██████████ 30 20 transaction
// └─────────██████████ 10 10 app
// 10 20 30
tracer, transport := transporttest.NewRecorderTracer()
defer tracer.Close()
t0 := time.Now()
tx := tracer.StartTransactionOptions("test", "request", apm.TransactionOptions{Start: t0})
span := tx.StartSpanOptions("whatever", "app", apm.SpanOptions{
Start: t0.Add(10 * time.Millisecond),
})
span.Duration = 10 * time.Millisecond // t0 + 20ms
span.End()
tx.Duration = 30 * time.Millisecond // t0 + 30ms
tx.End()
tracer.Flush(nil)
tracer.SendMetrics(nil)
assertBreakdownMetrics(t, []model.Metrics{
spanSelfTimeMetrics("test", "request", "app", "", 2, 30*time.Millisecond),
}, payloadsBreakdownMetrics(transport))
}
func TestBreakdownMetrics_AcceptanceTest4(t *testing.T) {
// total self type
// ██████████░░░░░░░░░░██████████ 30 20 transaction
// └─────────██████████ 10 10 db.mysql
// └─────────██████████ 10 10 db.mysql
// 10 20 30
tracer, transport := transporttest.NewRecorderTracer()
defer tracer.Close()
t0 := time.Now()
tx := tracer.StartTransactionOptions("test", "request", apm.TransactionOptions{Start: t0})
span1 := tx.StartSpanOptions("whatever", "db.mysql", apm.SpanOptions{Start: t0.Add(10 * time.Millisecond)})
span2 := tx.StartSpanOptions("whatever", "db.mysql", apm.SpanOptions{Start: t0.Add(10 * time.Millisecond)})
span1.Duration = 10 * time.Millisecond // t0 + 20ms
span2.Duration = 10 * time.Millisecond // t0 + 20ms
span1.End()
span2.End()
tx.Duration = 30 * time.Millisecond // t0 + 30ms
tx.End()
tracer.Flush(nil)
tracer.SendMetrics(nil)
assertBreakdownMetrics(t, []model.Metrics{
spanSelfTimeMetrics("test", "request", "app", "", 1, 20*time.Millisecond),
spanSelfTimeMetrics("test", "request", "db", "mysql", 2, 20*time.Millisecond),
}, payloadsBreakdownMetrics(transport))
}
func TestBreakdownMetrics_AcceptanceTest5(t *testing.T) {
// total self type
// ██████████░░░░░░░░░░░░░░░█████ 30 15 transaction
// └─────────██████████ 10 10 db.mysql
// └──────────────██████████ 10 10 db.mysql
// 10 20 30
tracer, transport := transporttest.NewRecorderTracer()
defer tracer.Close()
t0 := time.Now()
tx := tracer.StartTransactionOptions("test", "request", apm.TransactionOptions{Start: t0})
span1 := tx.StartSpanOptions("whatever", "db.mysql", apm.SpanOptions{Start: t0.Add(10 * time.Millisecond)})
span2 := tx.StartSpanOptions("whatever", "db.mysql", apm.SpanOptions{Start: t0.Add(15 * time.Millisecond)})
span1.Duration = 10 * time.Millisecond // t0 + 20ms
span2.Duration = 10 * time.Millisecond // t0 + 25ms
span1.End()
span2.End()
tx.Duration = 30 * time.Millisecond // t0 + 30ms
tx.End()
tracer.Flush(nil)
tracer.SendMetrics(nil)
assertBreakdownMetrics(t, []model.Metrics{
spanSelfTimeMetrics("test", "request", "app", "", 1, 15*time.Millisecond),
spanSelfTimeMetrics("test", "request", "db", "mysql", 2, 20*time.Millisecond),
}, payloadsBreakdownMetrics(transport))
}
func TestBreakdownMetrics_AcceptanceTest6(t *testing.T) {
// total self type
// █████░░░░░░░░░░░░░░░░░░░░█████ 30 15 transaction
// └────██████████ 10 10 db.mysql
// └──────────────██████████ 10 10 db.mysql
// 10 20 30
tracer, transport := transporttest.NewRecorderTracer()
defer tracer.Close()
t0 := time.Now()
tx := tracer.StartTransactionOptions("test", "request", apm.TransactionOptions{Start: t0})
span1 := tx.StartSpanOptions("whatever", "db.mysql", apm.SpanOptions{Start: t0.Add(5 * time.Millisecond)})
span1.Duration = 10 * time.Millisecond // t0 + 15ms
span1.End()
span2 := tx.StartSpanOptions("whatever", "db.mysql", apm.SpanOptions{Start: t0.Add(15 * time.Millisecond)})
span2.Duration = 10 * time.Millisecond // t0 + 25ms
span2.End()
tx.Duration = 30 * time.Millisecond // t0 + 30ms
tx.End()
tracer.Flush(nil)
tracer.SendMetrics(nil)
assertBreakdownMetrics(t, []model.Metrics{
spanSelfTimeMetrics("test", "request", "app", "", 1, 10*time.Millisecond),
spanSelfTimeMetrics("test", "request", "db", "mysql", 2, 20*time.Millisecond),
}, payloadsBreakdownMetrics(transport))
}
func TestBreakdownMetrics_AcceptanceTest7(t *testing.T) {
// total self type
// ██████████░░░░░█████░░░░░█████ 30 15 transaction
// └─────────█████ 5 5 db.mysql
// └───────────────────█████ 5 5 db.mysql
// 10 20 30
tracer, transport := transporttest.NewRecorderTracer()
defer tracer.Close()
t0 := time.Now()
tx := tracer.StartTransactionOptions("test", "request", apm.TransactionOptions{Start: t0})
span1 := tx.StartSpanOptions("whatever", "db.mysql", apm.SpanOptions{Start: t0.Add(10 * time.Millisecond)})
span1.Duration = 5 * time.Millisecond // t0 + 15ms
span1.End()
span2 := tx.StartSpanOptions("whatever", "db.mysql", apm.SpanOptions{Start: t0.Add(20 * time.Millisecond)})
span2.Duration = 5 * time.Millisecond // t0 + 25ms
span2.End()
tx.Duration = 30 * time.Millisecond // t0 + 30ms
tx.End()
tracer.Flush(nil)
tracer.SendMetrics(nil)
assertBreakdownMetrics(t, []model.Metrics{
spanSelfTimeMetrics("test", "request", "app", "", 1, 20*time.Millisecond),
spanSelfTimeMetrics("test", "request", "db", "mysql", 2, 10*time.Millisecond),
}, payloadsBreakdownMetrics(transport))
}
func TestBreakdownMetrics_AcceptanceTest8(t *testing.T) {
// total self type
// ██████████░░░░░░░░░░██████████ 30 20 transaction
// └─────────█████░░░░░ 10 5 app
// └────██████████ 10 10 db.mysql
// 10 20 30
tracer, transport := transporttest.NewRecorderTracer()
defer tracer.Close()
t0 := time.Now()
tx := tracer.StartTransactionOptions("test", "request", apm.TransactionOptions{Start: t0})
ctx := apm.ContextWithTransaction(context.Background(), tx)
span1, ctx := apm.StartSpanOptions(ctx, "whatever", "app", apm.SpanOptions{Start: t0.Add(10 * time.Millisecond)})
span2, ctx := apm.StartSpanOptions(ctx, "whatever", "db.mysql", apm.SpanOptions{Start: t0.Add(15 * time.Millisecond)})
span1.Duration = 10 * time.Millisecond // t0 + 20ms
span2.Duration = 10 * time.Millisecond // t0 + 25ms
span1.End()
span2.End()
tx.Duration = 30 * time.Millisecond // t0 + 30ms
tx.End()
tracer.Flush(nil)
tracer.SendMetrics(nil)
assertBreakdownMetrics(t, []model.Metrics{
spanSelfTimeMetrics("test", "request", "app", "", 2, 25*time.Millisecond),
spanSelfTimeMetrics("test", "request", "db", "mysql", 1, 10*time.Millisecond),
}, payloadsBreakdownMetrics(transport))
}
func TestBreakdownMetrics_AcceptanceTest9(t *testing.T) {
// total self type
// ██████████░░░░░░░░░░ 20 20 transaction
// └─────────██████████░░░░░░░░░░ 20 10 app
// └─────────██████████ 10 10 db.mysql
// 10 20 30
tracer, transport := transporttest.NewRecorderTracer()
defer tracer.Close()
t0 := time.Now()
tx := tracer.StartTransactionOptions("test", "request", apm.TransactionOptions{Start: t0})
ctx := apm.ContextWithTransaction(context.Background(), tx)
span1, ctx := apm.StartSpanOptions(ctx, "whatever", "app", apm.SpanOptions{Start: t0.Add(10 * time.Millisecond)})
tx.Duration = 20 * time.Millisecond // t0 + 20ms
tx.End()
span2, ctx := apm.StartSpanOptions(ctx, "whatever", "db.mysql", apm.SpanOptions{Start: t0.Add(20 * time.Millisecond)})
span1.Duration = 20 * time.Millisecond // t0 + 30ms
span2.Duration = 10 * time.Millisecond // t0 + 30ms
span1.End()
span2.End()
tracer.Flush(nil)
tracer.SendMetrics(nil)
assertBreakdownMetrics(t, []model.Metrics{
// The db.mysql span should not be included in breakdown,
// as it started after the transaction ended. The explicit
// "app" span should not be included in the self_time value,
// it should only have been used for subtracting from the
// transaction's duration.
spanSelfTimeMetrics("test", "request", "app", "", 1, 10*time.Millisecond),
}, payloadsBreakdownMetrics(transport))
}
func TestBreakdownMetrics_AcceptanceTest10(t *testing.T) {
// total self type
// ██████████░░░░░░░░░░ 20 10 transaction
// └─────────████████████████████ 20 20 db.mysql
// 10 20 30
tracer, transport := transporttest.NewRecorderTracer()
defer tracer.Close()
t0 := time.Now()
tx := tracer.StartTransactionOptions("test", "request", apm.TransactionOptions{Start: t0})
span := tx.StartSpanOptions("whatever", "db.mysql", apm.SpanOptions{Start: t0.Add(10 * time.Millisecond)})
tx.Duration = 20 * time.Millisecond // t0 + 20ms
tx.End()
span.Duration = 20 * time.Millisecond // t0 + 30ms
span.End()
tracer.Flush(nil)
tracer.SendMetrics(nil)
assertBreakdownMetrics(t, []model.Metrics{
// The db.mysql span should not be included in breakdown,
// as it ended after the transaction ended.
spanSelfTimeMetrics("test", "request", "app", "", 1, 10*time.Millisecond),
}, payloadsBreakdownMetrics(transport))
}
func TestBreakdownMetrics_AcceptanceTest11(t *testing.T) {
// total self type
// ██████████ 10 10 transaction
// └───────────────────██████████ 10 10 db.mysql
// 10 20 30
tracer, transport := transporttest.NewRecorderTracer()
defer tracer.Close()
t0 := time.Now()
tx := tracer.StartTransactionOptions("test", "request", apm.TransactionOptions{Start: t0})
tx.Duration = 10 * time.Millisecond // t0 + 10ms
tx.End()
span := tx.StartSpanOptions("whatever", "db.mysql", apm.SpanOptions{Start: t0.Add(20 * time.Millisecond)})
span.Duration = 10 * time.Millisecond // t0 + 30ms
span.End()
tracer.Flush(nil)
tracer.SendMetrics(nil)
assertBreakdownMetrics(t, []model.Metrics{
// The db.mysql span should not be included in breakdown,
// as it started and ended after the transaction ended.
spanSelfTimeMetrics("test", "request", "app", "", 1, 10*time.Millisecond),
}, payloadsBreakdownMetrics(transport))
}
func spanSelfTimeMetrics(txName, txType, spanType, spanSubtype string, count int, sum time.Duration) model.Metrics {
return model.Metrics{
Transaction: model.MetricsTransaction{
Type: txType,
Name: txName,
},
Span: model.MetricsSpan{
Type: spanType,
Subtype: spanSubtype,
},
Samples: map[string]model.Metric{
"span.self_time.count": {Value: float64(count)},
"span.self_time.sum.us": {Value: float64(sum) / 1e3},
},
}
}
func assertBreakdownMetrics(t *testing.T, expect []model.Metrics, metrics []model.Metrics) {
for i := range metrics {
metrics[i].Timestamp = model.Time{}
}
assert.ElementsMatch(t, expect, metrics)
}
func payloadsBreakdownMetrics(t *transporttest.RecorderTransport) []model.Metrics {
p := t.Payloads()
ms := make([]model.Metrics, 0, len(p.Metrics))
for _, m := range p.Metrics {
if m.Transaction.Type == "" {
continue
}
ms = append(ms, m)
}
return ms
}