forked from open-telemetry/opentelemetry-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_export.py
466 lines (370 loc) · 15.4 KB
/
test_export.py
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
# Copyright The OpenTelemetry Authors
#
# Licensed 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.
import os
import threading
import time
import unittest
from concurrent.futures import ThreadPoolExecutor
from logging import WARNING
from unittest import mock
from opentelemetry import trace as trace_api
from opentelemetry.configuration import Configuration
from opentelemetry.context import Context
from opentelemetry.sdk import trace
from opentelemetry.sdk.trace import export
class MySpanExporter(export.SpanExporter):
"""Very simple span exporter used for testing."""
def __init__(
self,
destination,
max_export_batch_size=None,
export_timeout_millis=0.0,
export_event: threading.Event = None,
):
self.destination = destination
self.max_export_batch_size = max_export_batch_size
self.is_shutdown = False
self.export_timeout = export_timeout_millis / 1e3
self.export_event = export_event
def export(self, spans: trace.Span) -> export.SpanExportResult:
if (
self.max_export_batch_size is not None
and len(spans) > self.max_export_batch_size
):
raise ValueError("Batch is too big")
time.sleep(self.export_timeout)
self.destination.extend(span.name for span in spans)
if self.export_event:
self.export_event.set()
return export.SpanExportResult.SUCCESS
def shutdown(self):
self.is_shutdown = True
class TestSimpleExportSpanProcessor(unittest.TestCase):
def test_simple_span_processor(self):
tracer_provider = trace.TracerProvider()
tracer = tracer_provider.get_tracer(__name__)
spans_names_list = []
my_exporter = MySpanExporter(destination=spans_names_list)
span_processor = export.SimpleExportSpanProcessor(my_exporter)
tracer_provider.add_span_processor(span_processor)
with tracer.start_as_current_span("foo"):
with tracer.start_as_current_span("bar"):
with tracer.start_as_current_span("xxx"):
pass
self.assertListEqual(["xxx", "bar", "foo"], spans_names_list)
span_processor.shutdown()
self.assertTrue(my_exporter.is_shutdown)
def test_simple_span_processor_no_context(self):
"""Check that we process spans that are never made active.
SpanProcessors should act on a span's start and end events whether or
not it is ever the active span.
"""
tracer_provider = trace.TracerProvider()
tracer = tracer_provider.get_tracer(__name__)
spans_names_list = []
my_exporter = MySpanExporter(destination=spans_names_list)
span_processor = export.SimpleExportSpanProcessor(my_exporter)
tracer_provider.add_span_processor(span_processor)
with tracer.start_span("foo"):
with tracer.start_span("bar"):
with tracer.start_span("xxx"):
pass
self.assertListEqual(["xxx", "bar", "foo"], spans_names_list)
def test_on_start_accepts_context(self):
# pylint: disable=no-self-use
tracer_provider = trace.TracerProvider()
tracer = tracer_provider.get_tracer(__name__)
exporter = MySpanExporter([])
span_processor = mock.Mock(
wraps=export.SimpleExportSpanProcessor(exporter)
)
tracer_provider.add_span_processor(span_processor)
context = Context()
span = tracer.start_span("foo", context=context)
span_processor.on_start.assert_called_once_with(
span, parent_context=context
)
def test_simple_span_processor_not_sampled(self):
tracer_provider = trace.TracerProvider(
sampler=trace.sampling.ALWAYS_OFF
)
tracer = tracer_provider.get_tracer(__name__)
spans_names_list = []
my_exporter = MySpanExporter(destination=spans_names_list)
span_processor = export.SimpleExportSpanProcessor(my_exporter)
tracer_provider.add_span_processor(span_processor)
with tracer.start_as_current_span("foo"):
with tracer.start_as_current_span("bar"):
with tracer.start_as_current_span("xxx"):
pass
self.assertListEqual([], spans_names_list)
def _create_start_and_end_span(name, span_processor):
span = trace._Span(
name,
trace_api.SpanContext(
0xDEADBEEF,
0xDEADBEEF,
is_remote=False,
trace_flags=trace_api.TraceFlags(trace_api.TraceFlags.SAMPLED),
),
span_processor=span_processor,
)
span.start()
span.end()
class TestBatchExportSpanProcessor(unittest.TestCase):
def tearDown(self) -> None:
# reset global state of configuration object
# pylint: disable=protected-access
Configuration._reset()
@mock.patch.dict(
"os.environ",
{
"OTEL_BSP_MAX_QUEUE_SIZE": "10",
"OTEL_BSP_SCHEDULE_DELAY_MILLIS": "2",
"OTEL_BSP_MAX_EXPORT_BATCH_SIZE": "3",
"OTEL_BSP_EXPORT_TIMEOUT_MILLIS": "4",
},
)
def test_batch_span_processor_environment_variables(self):
batch_span_processor = export.BatchExportSpanProcessor(
MySpanExporter(destination=[])
)
self.assertEqual(batch_span_processor.max_queue_size, 10)
self.assertEqual(batch_span_processor.schedule_delay_millis, 2)
self.assertEqual(batch_span_processor.max_export_batch_size, 3)
self.assertEqual(batch_span_processor.export_timeout_millis, 4)
def test_on_start_accepts_parent_context(self):
# pylint: disable=no-self-use
my_exporter = MySpanExporter(destination=[])
span_processor = mock.Mock(
wraps=export.BatchExportSpanProcessor(my_exporter)
)
tracer_provider = trace.TracerProvider()
tracer_provider.add_span_processor(span_processor)
tracer = tracer_provider.get_tracer(__name__)
context = Context()
span = tracer.start_span("foo", context=context)
span_processor.on_start.assert_called_once_with(
span, parent_context=context
)
def test_shutdown(self):
spans_names_list = []
my_exporter = MySpanExporter(destination=spans_names_list)
span_processor = export.BatchExportSpanProcessor(my_exporter)
span_names = ["xxx", "bar", "foo"]
for name in span_names:
_create_start_and_end_span(name, span_processor)
span_processor.shutdown()
self.assertTrue(my_exporter.is_shutdown)
# check that spans are exported without an explicitly call to
# force_flush()
self.assertListEqual(span_names, spans_names_list)
def test_flush(self):
spans_names_list = []
my_exporter = MySpanExporter(destination=spans_names_list)
span_processor = export.BatchExportSpanProcessor(my_exporter)
span_names0 = ["xxx", "bar", "foo"]
span_names1 = ["yyy", "baz", "fox"]
for name in span_names0:
_create_start_and_end_span(name, span_processor)
self.assertTrue(span_processor.force_flush())
self.assertListEqual(span_names0, spans_names_list)
# create some more spans to check that span processor still works
for name in span_names1:
_create_start_and_end_span(name, span_processor)
self.assertTrue(span_processor.force_flush())
self.assertListEqual(span_names0 + span_names1, spans_names_list)
span_processor.shutdown()
def test_flush_empty(self):
spans_names_list = []
my_exporter = MySpanExporter(destination=spans_names_list)
span_processor = export.BatchExportSpanProcessor(my_exporter)
self.assertTrue(span_processor.force_flush())
def test_flush_from_multiple_threads(self):
num_threads = 50
num_spans = 10
span_list = []
my_exporter = MySpanExporter(destination=span_list)
span_processor = export.BatchExportSpanProcessor(
my_exporter, max_queue_size=512, max_export_batch_size=128
)
def create_spans_and_flush(tno: int):
for span_idx in range(num_spans):
_create_start_and_end_span(
"Span {}-{}".format(tno, span_idx), span_processor
)
self.assertTrue(span_processor.force_flush())
with ThreadPoolExecutor(max_workers=num_threads) as executor:
future_list = []
for thread_no in range(num_threads):
future = executor.submit(create_spans_and_flush, thread_no)
future_list.append(future)
executor.shutdown()
self.assertEqual(num_threads * num_spans, len(span_list))
def test_flush_timeout(self):
spans_names_list = []
my_exporter = MySpanExporter(
destination=spans_names_list, export_timeout_millis=500
)
span_processor = export.BatchExportSpanProcessor(my_exporter)
_create_start_and_end_span("foo", span_processor)
# check that the timeout is not meet
with self.assertLogs(level=WARNING):
self.assertFalse(span_processor.force_flush(100))
span_processor.shutdown()
def test_batch_span_processor_lossless(self):
"""Test that no spans are lost when sending max_queue_size spans"""
spans_names_list = []
my_exporter = MySpanExporter(
destination=spans_names_list, max_export_batch_size=128
)
span_processor = export.BatchExportSpanProcessor(
my_exporter, max_queue_size=512, max_export_batch_size=128
)
for _ in range(512):
_create_start_and_end_span("foo", span_processor)
time.sleep(1)
self.assertTrue(span_processor.force_flush())
self.assertEqual(len(spans_names_list), 512)
span_processor.shutdown()
def test_batch_span_processor_many_spans(self):
"""Test that no spans are lost when sending many spans"""
spans_names_list = []
my_exporter = MySpanExporter(
destination=spans_names_list, max_export_batch_size=128
)
span_processor = export.BatchExportSpanProcessor(
my_exporter,
max_queue_size=256,
max_export_batch_size=64,
schedule_delay_millis=100,
)
for _ in range(4):
for _ in range(256):
_create_start_and_end_span("foo", span_processor)
time.sleep(0.1) # give some time for the exporter to upload spans
self.assertTrue(span_processor.force_flush())
self.assertEqual(len(spans_names_list), 1024)
span_processor.shutdown()
def test_batch_span_processor_not_sampled(self):
tracer_provider = trace.TracerProvider(
sampler=trace.sampling.ALWAYS_OFF
)
tracer = tracer_provider.get_tracer(__name__)
spans_names_list = []
my_exporter = MySpanExporter(
destination=spans_names_list, max_export_batch_size=128
)
span_processor = export.BatchExportSpanProcessor(
my_exporter,
max_queue_size=256,
max_export_batch_size=64,
schedule_delay_millis=100,
)
tracer_provider.add_span_processor(span_processor)
with tracer.start_as_current_span("foo"):
pass
time.sleep(0.05) # give some time for the exporter to upload spans
self.assertTrue(span_processor.force_flush())
self.assertEqual(len(spans_names_list), 0)
span_processor.shutdown()
def test_batch_span_processor_scheduled_delay(self):
"""Test that spans are exported each schedule_delay_millis"""
spans_names_list = []
export_event = threading.Event()
my_exporter = MySpanExporter(
destination=spans_names_list, export_event=export_event
)
span_processor = export.BatchExportSpanProcessor(
my_exporter, schedule_delay_millis=50,
)
# create single span
start_time = time.time()
_create_start_and_end_span("foo", span_processor)
self.assertTrue(export_event.wait(2))
export_time = time.time()
self.assertEqual(len(spans_names_list), 1)
self.assertGreaterEqual((export_time - start_time) * 1e3, 50)
span_processor.shutdown()
def test_batch_span_processor_parameters(self):
# zero max_queue_size
self.assertRaises(
ValueError, export.BatchExportSpanProcessor, None, max_queue_size=0
)
# negative max_queue_size
self.assertRaises(
ValueError,
export.BatchExportSpanProcessor,
None,
max_queue_size=-500,
)
# zero schedule_delay_millis
self.assertRaises(
ValueError,
export.BatchExportSpanProcessor,
None,
schedule_delay_millis=0,
)
# negative schedule_delay_millis
self.assertRaises(
ValueError,
export.BatchExportSpanProcessor,
None,
schedule_delay_millis=-500,
)
# zero max_export_batch_size
self.assertRaises(
ValueError,
export.BatchExportSpanProcessor,
None,
max_export_batch_size=0,
)
# negative max_export_batch_size
self.assertRaises(
ValueError,
export.BatchExportSpanProcessor,
None,
max_export_batch_size=-500,
)
# max_export_batch_size > max_queue_size:
self.assertRaises(
ValueError,
export.BatchExportSpanProcessor,
None,
max_queue_size=256,
max_export_batch_size=512,
)
class TestConsoleSpanExporter(unittest.TestCase):
def test_export(self): # pylint: disable=no-self-use
"""Check that the console exporter prints spans."""
exporter = export.ConsoleSpanExporter()
# Mocking stdout interferes with debugging and test reporting, mock on
# the exporter instance instead.
span = trace._Span("span name", trace_api.INVALID_SPAN_CONTEXT)
with mock.patch.object(exporter, "out") as mock_stdout:
exporter.export([span])
mock_stdout.write.assert_called_once_with(span.to_json() + os.linesep)
self.assertEqual(mock_stdout.write.call_count, 1)
self.assertEqual(mock_stdout.flush.call_count, 1)
def test_export_custom(self): # pylint: disable=no-self-use
"""Check that console exporter uses custom io, formatter."""
mock_span_str = mock.Mock(str)
def formatter(span): # pylint: disable=unused-argument
return mock_span_str
mock_stdout = mock.Mock()
exporter = export.ConsoleSpanExporter(
out=mock_stdout, formatter=formatter
)
exporter.export([trace._Span("span name", mock.Mock())])
mock_stdout.write.assert_called_once_with(mock_span_str)