-
Notifications
You must be signed in to change notification settings - Fork 661
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add throughput performance tests for exporter
- Loading branch information
1 parent
9d0834d
commit dd5fe0b
Showing
2 changed files
with
93 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
74 changes: 74 additions & 0 deletions
74
...opentelemetry-exporter-otlp/tests/performance/benchmarks/test_benchmark_trace_exporter.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
# 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. | ||
|
||
from unittest.mock import patch | ||
|
||
from opentelemetry.exporter.otlp.trace_exporter import OTLPSpanExporter | ||
from opentelemetry.sdk.trace import TracerProvider, sampling | ||
from opentelemetry.sdk.trace.export import ( | ||
BatchExportSpanProcessor, | ||
SimpleExportSpanProcessor, | ||
) | ||
|
||
|
||
def get_tracer_with_processor(span_processor_class): | ||
simple_span_processor = span_processor_class(OTLPSpanExporter()) | ||
tracer = TracerProvider( | ||
active_span_processor=simple_span_processor, | ||
sampler=sampling.DEFAULT_ON, | ||
).get_tracer("pipeline_benchmark_tracer") | ||
return tracer | ||
|
||
|
||
class MockTraceServiceStub(object): | ||
def __init__(self, channel): | ||
self.Export = lambda *args, **kwargs: None | ||
|
||
|
||
@patch( | ||
"opentelemetry.exporter.otlp.trace_exporter.OTLPSpanExporter._stub", | ||
new=MockTraceServiceStub, | ||
) | ||
def test_simple_span_processor(benchmark): | ||
tracer = get_tracer_with_processor(SimpleExportSpanProcessor) | ||
|
||
def create_spans_to_be_exported(): | ||
span = tracer.start_span("benchmarkedSpan",) | ||
for i in range(10): | ||
span.set_attribute( | ||
"benchmarkAttribute_{}".format(i), | ||
"benchmarkAttrValue_{}".format(i), | ||
) | ||
span.end() | ||
|
||
benchmark(create_spans_to_be_exported) | ||
|
||
|
||
@patch( | ||
"opentelemetry.exporter.otlp.trace_exporter.OTLPSpanExporter._stub", | ||
new=MockTraceServiceStub, | ||
) | ||
def test_batch_span_processor(benchmark): | ||
tracer = get_tracer_with_processor(BatchExportSpanProcessor) | ||
|
||
def create_spans_to_be_exported(): | ||
span = tracer.start_span("benchmarkedSpan",) | ||
for i in range(10): | ||
span.set_attribute( | ||
"benchmarkAttribute_{}".format(i), | ||
"benchmarkAttrValue_{}".format(i), | ||
) | ||
span.end() | ||
|
||
benchmark(create_spans_to_be_exported) |