1
1
// Copyright The OpenTelemetry Authors
2
2
// SPDX-License-Identifier: Apache-2.0
3
3
4
- package trace_test
4
+ package trace
5
5
6
6
import (
7
7
"context"
@@ -12,22 +12,17 @@ import (
12
12
"testing"
13
13
"time"
14
14
15
- "github.com/go-logr/logr"
16
- "github.com/go-logr/logr/funcr"
17
15
"github.com/stretchr/testify/assert"
18
16
"github.com/stretchr/testify/require"
19
17
20
- "go.opentelemetry.io/otel/internal/global"
21
18
"go.opentelemetry.io/otel/sdk/internal/env"
22
19
ottest "go.opentelemetry.io/otel/sdk/internal/internaltest"
23
- sdktrace "go.opentelemetry.io/otel/sdk/trace"
24
- "go.opentelemetry.io/otel/sdk/trace/tracetest"
25
20
"go.opentelemetry.io/otel/trace"
26
21
)
27
22
28
23
type testBatchExporter struct {
29
24
mu sync.Mutex
30
- spans []sdktrace. ReadOnlySpan
25
+ spans []ReadOnlySpan
31
26
sizes []int
32
27
batchCount int
33
28
shutdownCount int
@@ -37,7 +32,7 @@ type testBatchExporter struct {
37
32
err error
38
33
}
39
34
40
- func (t * testBatchExporter ) ExportSpans (ctx context.Context , spans []sdktrace. ReadOnlySpan ) error {
35
+ func (t * testBatchExporter ) ExportSpans (ctx context.Context , spans []ReadOnlySpan ) error {
41
36
t .mu .Lock ()
42
37
defer t .mu .Unlock ()
43
38
@@ -78,20 +73,20 @@ func (t *testBatchExporter) getBatchCount() int {
78
73
return t .batchCount
79
74
}
80
75
81
- var _ sdktrace. SpanExporter = (* testBatchExporter )(nil )
76
+ var _ SpanExporter = (* testBatchExporter )(nil )
82
77
83
78
func TestNewBatchSpanProcessorWithNilExporter (t * testing.T ) {
84
79
tp := basicTracerProvider (t )
85
- bsp := sdktrace . NewBatchSpanProcessor (nil )
80
+ bsp := NewBatchSpanProcessor (nil )
86
81
tp .RegisterSpanProcessor (bsp )
87
82
tr := tp .Tracer ("NilExporter" )
88
83
89
84
_ , span := tr .Start (context .Background (), "foo" )
90
85
span .End ()
91
86
92
87
// These should not panic.
93
- bsp .OnStart (context .Background (), span .(sdktrace. ReadWriteSpan ))
94
- bsp .OnEnd (span .(sdktrace. ReadOnlySpan ))
88
+ bsp .OnStart (context .Background (), span .(ReadWriteSpan ))
89
+ bsp .OnEnd (span .(ReadOnlySpan ))
95
90
if err := bsp .ForceFlush (context .Background ()); err != nil {
96
91
t .Errorf ("failed to ForceFlush the BatchSpanProcessor: %v" , err )
97
92
}
@@ -102,7 +97,7 @@ func TestNewBatchSpanProcessorWithNilExporter(t *testing.T) {
102
97
103
98
type testOption struct {
104
99
name string
105
- o []sdktrace. BatchSpanProcessorOption
100
+ o []BatchSpanProcessorOption
106
101
wantNumSpans int
107
102
wantBatchCount int
108
103
genNumSpans int
@@ -121,50 +116,50 @@ func TestNewBatchSpanProcessorWithOptions(t *testing.T) {
121
116
},
122
117
{
123
118
name : "non-default BatchTimeout" ,
124
- o : []sdktrace. BatchSpanProcessorOption {
125
- sdktrace . WithBatchTimeout (schDelay ),
119
+ o : []BatchSpanProcessorOption {
120
+ WithBatchTimeout (schDelay ),
126
121
},
127
122
wantNumSpans : 2053 ,
128
123
wantBatchCount : 4 ,
129
124
genNumSpans : 2053 ,
130
125
},
131
126
{
132
127
name : "non-default MaxQueueSize and BatchTimeout" ,
133
- o : []sdktrace. BatchSpanProcessorOption {
134
- sdktrace . WithBatchTimeout (schDelay ),
135
- sdktrace . WithMaxQueueSize (200 ),
128
+ o : []BatchSpanProcessorOption {
129
+ WithBatchTimeout (schDelay ),
130
+ WithMaxQueueSize (200 ),
136
131
},
137
132
wantNumSpans : 205 ,
138
133
wantBatchCount : 1 ,
139
134
genNumSpans : 205 ,
140
135
},
141
136
{
142
137
name : "non-default MaxQueueSize, BatchTimeout and MaxExportBatchSize" ,
143
- o : []sdktrace. BatchSpanProcessorOption {
144
- sdktrace . WithBatchTimeout (schDelay ),
145
- sdktrace . WithMaxQueueSize (205 ),
146
- sdktrace . WithMaxExportBatchSize (20 ),
138
+ o : []BatchSpanProcessorOption {
139
+ WithBatchTimeout (schDelay ),
140
+ WithMaxQueueSize (205 ),
141
+ WithMaxExportBatchSize (20 ),
147
142
},
148
143
wantNumSpans : 210 ,
149
144
wantBatchCount : 11 ,
150
145
genNumSpans : 210 ,
151
146
},
152
147
{
153
148
name : "blocking option" ,
154
- o : []sdktrace. BatchSpanProcessorOption {
155
- sdktrace . WithBatchTimeout (schDelay ),
156
- sdktrace . WithMaxQueueSize (200 ),
157
- sdktrace . WithMaxExportBatchSize (20 ),
149
+ o : []BatchSpanProcessorOption {
150
+ WithBatchTimeout (schDelay ),
151
+ WithMaxQueueSize (200 ),
152
+ WithMaxExportBatchSize (20 ),
158
153
},
159
154
wantNumSpans : 205 ,
160
155
wantBatchCount : 11 ,
161
156
genNumSpans : 205 ,
162
157
},
163
158
{
164
159
name : "parallel span generation" ,
165
- o : []sdktrace. BatchSpanProcessorOption {
166
- sdktrace . WithBatchTimeout (schDelay ),
167
- sdktrace . WithMaxQueueSize (200 ),
160
+ o : []BatchSpanProcessorOption {
161
+ WithBatchTimeout (schDelay ),
162
+ WithMaxQueueSize (200 ),
168
163
},
169
164
wantNumSpans : 205 ,
170
165
wantBatchCount : 1 ,
@@ -173,9 +168,9 @@ func TestNewBatchSpanProcessorWithOptions(t *testing.T) {
173
168
},
174
169
{
175
170
name : "parallel span blocking" ,
176
- o : []sdktrace. BatchSpanProcessorOption {
177
- sdktrace . WithBatchTimeout (schDelay ),
178
- sdktrace . WithMaxExportBatchSize (200 ),
171
+ o : []BatchSpanProcessorOption {
172
+ WithBatchTimeout (schDelay ),
173
+ WithMaxExportBatchSize (200 ),
179
174
},
180
175
wantNumSpans : 2000 ,
181
176
wantBatchCount : 10 ,
@@ -306,19 +301,19 @@ type stuckExporter struct {
306
301
}
307
302
308
303
// ExportSpans waits for ctx to expire and returns that error.
309
- func (e * stuckExporter ) ExportSpans (ctx context.Context , _ []sdktrace. ReadOnlySpan ) error {
304
+ func (e * stuckExporter ) ExportSpans (ctx context.Context , _ []ReadOnlySpan ) error {
310
305
<- ctx .Done ()
311
306
e .err = ctx .Err ()
312
307
return ctx .Err ()
313
308
}
314
309
315
310
func TestBatchSpanProcessorExportTimeout (t * testing.T ) {
316
311
exp := new (stuckExporter )
317
- bsp := sdktrace . NewBatchSpanProcessor (
312
+ bsp := NewBatchSpanProcessor (
318
313
exp ,
319
314
// Set a non-zero export timeout so a deadline is set.
320
- sdktrace . WithExportTimeout (1 * time .Microsecond ),
321
- sdktrace . WithBlocking (),
315
+ WithExportTimeout (1 * time .Microsecond ),
316
+ WithBlocking (),
322
317
)
323
318
tp := basicTracerProvider (t )
324
319
tp .RegisterSpanProcessor (bsp )
@@ -332,10 +327,10 @@ func TestBatchSpanProcessorExportTimeout(t *testing.T) {
332
327
}
333
328
}
334
329
335
- func createAndRegisterBatchSP (option testOption , te * testBatchExporter ) sdktrace. SpanProcessor {
330
+ func createAndRegisterBatchSP (option testOption , te * testBatchExporter ) SpanProcessor {
336
331
// Always use blocking queue to avoid flaky tests.
337
- options := append (option .o , sdktrace . WithBlocking ())
338
- return sdktrace . NewBatchSpanProcessor (te , options ... )
332
+ options := append (option .o , WithBlocking ())
333
+ return NewBatchSpanProcessor (te , options ... )
339
334
}
340
335
341
336
func generateSpan (_ * testing.T , tr trace.Tracer , option testOption ) {
@@ -382,7 +377,7 @@ func getSpanContext() trace.SpanContext {
382
377
383
378
func TestBatchSpanProcessorShutdown (t * testing.T ) {
384
379
var bp testBatchExporter
385
- bsp := sdktrace . NewBatchSpanProcessor (& bp )
380
+ bsp := NewBatchSpanProcessor (& bp )
386
381
387
382
err := bsp .Shutdown (context .Background ())
388
383
if err != nil {
@@ -401,14 +396,14 @@ func TestBatchSpanProcessorShutdown(t *testing.T) {
401
396
func TestBatchSpanProcessorPostShutdown (t * testing.T ) {
402
397
tp := basicTracerProvider (t )
403
398
be := testBatchExporter {}
404
- bsp := sdktrace . NewBatchSpanProcessor (& be )
399
+ bsp := NewBatchSpanProcessor (& be )
405
400
406
401
tp .RegisterSpanProcessor (bsp )
407
402
tr := tp .Tracer ("Normal" )
408
403
409
404
generateSpanParallel (t , tr , testOption {
410
- o : []sdktrace. BatchSpanProcessorOption {
411
- sdktrace . WithMaxExportBatchSize (50 ),
405
+ o : []BatchSpanProcessorOption {
406
+ WithMaxExportBatchSize (50 ),
412
407
},
413
408
genNumSpans : 60 ,
414
409
})
@@ -428,9 +423,9 @@ func TestBatchSpanProcessorForceFlushSucceeds(t *testing.T) {
428
423
tp := basicTracerProvider (t )
429
424
option := testOption {
430
425
name : "default BatchSpanProcessorOptions" ,
431
- o : []sdktrace. BatchSpanProcessorOption {
432
- sdktrace . WithMaxQueueSize (0 ),
433
- sdktrace . WithMaxExportBatchSize (3000 ),
426
+ o : []BatchSpanProcessorOption {
427
+ WithMaxQueueSize (0 ),
428
+ WithMaxExportBatchSize (3000 ),
434
429
},
435
430
wantNumSpans : 2053 ,
436
431
wantBatchCount : 1 ,
@@ -468,9 +463,9 @@ func TestBatchSpanProcessorDropBatchIfFailed(t *testing.T) {
468
463
}
469
464
tp := basicTracerProvider (t )
470
465
option := testOption {
471
- o : []sdktrace. BatchSpanProcessorOption {
472
- sdktrace . WithMaxQueueSize (0 ),
473
- sdktrace . WithMaxExportBatchSize (2000 ),
466
+ o : []BatchSpanProcessorOption {
467
+ WithMaxQueueSize (0 ),
468
+ WithMaxExportBatchSize (2000 ),
474
469
},
475
470
wantNumSpans : 1000 ,
476
471
wantBatchCount : 1 ,
@@ -545,7 +540,7 @@ func (e indefiniteExporter) Shutdown(context.Context) error {
545
540
return nil
546
541
}
547
542
548
- func (e indefiniteExporter ) ExportSpans (ctx context.Context , _ []sdktrace. ReadOnlySpan ) error {
543
+ func (e indefiniteExporter ) ExportSpans (ctx context.Context , _ []ReadOnlySpan ) error {
549
544
<- e .stop
550
545
return ctx .Err ()
551
546
}
@@ -555,7 +550,7 @@ func TestBatchSpanProcessorForceFlushCancellation(t *testing.T) {
555
550
// Cancel the context
556
551
cancel ()
557
552
558
- bsp := sdktrace . NewBatchSpanProcessor (newIndefiniteExporter (t ))
553
+ bsp := NewBatchSpanProcessor (newIndefiniteExporter (t ))
559
554
t .Cleanup (func () {
560
555
assert .NoError (t , bsp .Shutdown (context .Background ()))
561
556
})
@@ -568,7 +563,7 @@ func TestBatchSpanProcessorForceFlushCancellation(t *testing.T) {
568
563
func TestBatchSpanProcessorForceFlushTimeout (t * testing.T ) {
569
564
tp := basicTracerProvider (t )
570
565
exp := newIndefiniteExporter (t )
571
- bsp := sdktrace . NewBatchSpanProcessor (exp )
566
+ bsp := NewBatchSpanProcessor (exp )
572
567
tp .RegisterSpanProcessor (bsp )
573
568
tr := tp .Tracer (t .Name ())
574
569
_ , span := tr .Start (context .Background (), "foo" )
@@ -586,11 +581,10 @@ func TestBatchSpanProcessorForceFlushTimeout(t *testing.T) {
586
581
func TestBatchSpanProcessorForceFlushQueuedSpans (t * testing.T ) {
587
582
ctx := context .Background ()
588
583
589
- exp := tracetest .NewInMemoryExporter ()
590
-
591
- tp := sdktrace .NewTracerProvider (
592
- sdktrace .WithBatcher (exp ),
593
- )
584
+ var bp testBatchExporter
585
+ bsp := NewBatchSpanProcessor (& bp )
586
+ tp := basicTracerProvider (t )
587
+ tp .RegisterSpanProcessor (bsp )
594
588
t .Cleanup (func () {
595
589
assert .NoError (t , tp .Shutdown (context .Background ()))
596
590
})
@@ -604,14 +598,14 @@ func TestBatchSpanProcessorForceFlushQueuedSpans(t *testing.T) {
604
598
err := tp .ForceFlush (ctx )
605
599
assert .NoError (t , err )
606
600
607
- assert .Len (t , exp . GetSpans () , i + 1 )
601
+ assert .Len (t , bp . spans , i + 1 )
608
602
}
609
603
}
610
604
611
605
func TestBatchSpanProcessorConcurrentSafe (t * testing.T ) {
612
606
ctx := context .Background ()
613
607
var bp testBatchExporter
614
- bsp := sdktrace . NewBatchSpanProcessor (& bp )
608
+ bsp := NewBatchSpanProcessor (& bp )
615
609
tp := basicTracerProvider (t )
616
610
tp .RegisterSpanProcessor (bsp )
617
611
tr := tp .Tracer (t .Name ())
@@ -650,62 +644,3 @@ func TestBatchSpanProcessorConcurrentSafe(t *testing.T) {
650
644
651
645
wg .Wait ()
652
646
}
653
-
654
- func BenchmarkSpanProcessorOnEnd (b * testing.B ) {
655
- for _ , bb := range []struct {
656
- batchSize int
657
- spansCount int
658
- }{
659
- {batchSize : 10 , spansCount : 10 },
660
- {batchSize : 10 , spansCount : 100 },
661
- {batchSize : 100 , spansCount : 10 },
662
- {batchSize : 100 , spansCount : 100 },
663
- } {
664
- b .Run (fmt .Sprintf ("batch: %d, spans: %d" , bb .batchSize , bb .spansCount ), func (b * testing.B ) {
665
- bsp := sdktrace .NewBatchSpanProcessor (
666
- tracetest .NewNoopExporter (),
667
- sdktrace .WithMaxExportBatchSize (bb .batchSize ),
668
- )
669
- b .Cleanup (func () {
670
- _ = bsp .Shutdown (context .Background ())
671
- })
672
- snap := tracetest.SpanStub {}.Snapshot ()
673
-
674
- b .ResetTimer ()
675
- b .ReportAllocs ()
676
- for i := 0 ; i < b .N ; i ++ {
677
- // Ensure the export happens for every run
678
- for j := 0 ; j < bb .spansCount ; j ++ {
679
- bsp .OnEnd (snap )
680
- }
681
- }
682
- })
683
- }
684
- }
685
-
686
- func BenchmarkSpanProcessorVerboseLogging (b * testing.B ) {
687
- b .Cleanup (func (l logr.Logger ) func () {
688
- return func () { global .SetLogger (l ) }
689
- }(global .GetLogger ()))
690
- global .SetLogger (funcr .New (func (prefix , args string ) {}, funcr.Options {Verbosity : 5 }))
691
- tp := sdktrace .NewTracerProvider (
692
- sdktrace .WithBatcher (
693
- tracetest .NewNoopExporter (),
694
- sdktrace .WithMaxExportBatchSize (10 ),
695
- ))
696
- b .Cleanup (func () {
697
- _ = tp .Shutdown (context .Background ())
698
- })
699
- tracer := tp .Tracer ("bench" )
700
- ctx := context .Background ()
701
-
702
- b .ResetTimer ()
703
- b .ReportAllocs ()
704
-
705
- for i := 0 ; i < b .N ; i ++ {
706
- for j := 0 ; j < 10 ; j ++ {
707
- _ , span := tracer .Start (ctx , "bench" )
708
- span .End ()
709
- }
710
- }
711
- }
0 commit comments