-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix_deepcopy
- Loading branch information
Showing
3 changed files
with
56 additions
and
2 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
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
54 changes: 54 additions & 0 deletions
54
aws-opentelemetry-distro/tests/amazon/opentelemetry/distro/test_aws_tracer_configurer.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,54 @@ | ||
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
import os | ||
import time | ||
from unittest import TestCase | ||
|
||
from amazon.opentelemetry.distro.aws_opentelemetry_configurator import AwsOpenTelemetryConfigurator | ||
from amazon.opentelemetry.distro.aws_opentelemetry_distro import AwsOpenTelemetryDistro | ||
from opentelemetry.environment_variables import OTEL_LOGS_EXPORTER, OTEL_METRICS_EXPORTER, OTEL_TRACES_EXPORTER | ||
from opentelemetry.sdk.environment_variables import OTEL_TRACES_SAMPLER, OTEL_TRACES_SAMPLER_ARG | ||
from opentelemetry.sdk.trace import Span, Tracer, TracerProvider | ||
from opentelemetry.trace import get_tracer_provider | ||
|
||
|
||
# This class setup Tracer Provider Globally, which can only set once | ||
# if there is another setup for tracer provider, may cause issue | ||
class TestAwsTracerConfigurer(TestCase): | ||
@classmethod | ||
def setUpClass(cls): | ||
os.environ.setdefault(OTEL_TRACES_EXPORTER, "none") | ||
os.environ.setdefault(OTEL_METRICS_EXPORTER, "none") | ||
os.environ.setdefault(OTEL_LOGS_EXPORTER, "none") | ||
os.environ.setdefault(OTEL_TRACES_SAMPLER, "traceidratio") | ||
os.environ.setdefault(OTEL_TRACES_SAMPLER_ARG, "0.01") | ||
aws_open_telemetry_distro: AwsOpenTelemetryDistro = AwsOpenTelemetryDistro() | ||
aws_open_telemetry_distro.configure() | ||
aws_otel_configurator: AwsOpenTelemetryConfigurator = AwsOpenTelemetryConfigurator() | ||
aws_otel_configurator.configure() | ||
cls.tracer_provider: TracerProvider = get_tracer_provider() | ||
|
||
# The probability of this passing once without correct IDs is low, 20 times is inconceivable. | ||
def test_provide_generate_xray_ids(self): | ||
for _ in range(20): | ||
tracer: Tracer = self.tracer_provider.get_tracer("test") | ||
start_time_sec: int = int(time.time()) | ||
span: Span = tracer.start_span("test") | ||
trace_id: int = span.get_span_context().trace_id | ||
trace_id_4_byte_hex: str = hex(trace_id)[2:10] | ||
trace_id_4_byte_int: int = int(trace_id_4_byte_hex, 16) | ||
self.assertGreaterEqual(trace_id_4_byte_int, start_time_sec) | ||
|
||
# Sanity check that the trace ID ratio sampler works fine with the x-ray generator. | ||
def test_trace_id_ratio_sampler(self): | ||
for _ in range(20): | ||
num_spans: int = 100000 | ||
num_sampled: int = 0 | ||
tracer: Tracer = self.tracer_provider.get_tracer("test") | ||
for _ in range(num_spans): | ||
span: Span = tracer.start_span("test") | ||
if span.get_span_context().trace_flags.sampled: | ||
num_sampled += 1 | ||
span.end() | ||
# Configured for 1%, confirm there are at most 5% to account for randomness and reduce test flakiness. | ||
self.assertGreater(0.05, num_sampled / num_spans) |