Skip to main content

AWS SDK extension for OpenTelemetry

Project description

pypi

This library provides components necessary to configure the OpenTelemetry SDK for tracing with AWS X-Ray.

Installation

pip install opentelemetry-sdk-extension-aws

Usage (AWS X-Ray IDs Generator)

Configure the OTel SDK TracerProvider with the provided custom IDs Generator to make spans compatible with the AWS X-Ray backend tracing service.

Install the OpenTelemetry SDK package.

pip install opentelemetry-sdk

Next, use the provided AwsXRayIdGenerator to initialize the TracerProvider.

import opentelemetry.trace as trace
from opentelemetry.sdk.extension.aws.trace import AwsXRayIdGenerator
from opentelemetry.sdk.trace import TracerProvider

trace.set_tracer_provider(
    TracerProvider(id_generator=AwsXRayIdGenerator())
)

Usage (AWS Resource Detectors)

Use the provided Resource Detectors to automatically populate attributes under the resource namespace of each generated span.

For example, if tracing with OpenTelemetry on an AWS EC2 instance, you can automatically populate resource attributes by creating a TraceProvider using the AwsEc2ResourceDetector:

import opentelemetry.trace as trace
from opentelemetry.sdk.trace import TracerProvider
from opentelemetry.sdk.extension.aws.resource.ec2 import (
    AwsEc2ResourceDetector,
)
from opentelemetry.sdk.resources import get_aggregated_resources

trace.set_tracer_provider(
    TracerProvider(
        resource=get_aggregated_resources(
            [
                AwsEc2ResourceDetector(),
            ]
        ),
    )
)

Refer to each detectors’ docstring to determine any possible requirements for that detector.

References

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

opentelemetry_sdk_extension_aws-2.1.0.tar.gz (16.3 kB view details)

Uploaded Source

Built Distribution

opentelemetry_sdk_extension_aws-2.1.0-py3-none-any.whl (18.8 kB view details)

Uploaded Python 3

File details

Details for the file opentelemetry_sdk_extension_aws-2.1.0.tar.gz.

File metadata

File hashes

Hashes for opentelemetry_sdk_extension_aws-2.1.0.tar.gz
Algorithm Hash digest
SHA256 ff68ddecc1910f62c019d22ec0f7461713ead7f662d6a2304d4089c1a0b20416
MD5 fc90ec517d978b85ca7a1a8c2358bdc8
BLAKE2b-256 f5b3825c93fe4c238845f1356297abea33d03b2adaafb5ae98fc257b394de124

See more details on using hashes here.

File details

Details for the file opentelemetry_sdk_extension_aws-2.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for opentelemetry_sdk_extension_aws-2.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c7cf6efc275d2c24108a468d954287ce5aab9733bac816a080cfb3117374e63a
MD5 b4b194c3aed22f0569c434bf89984dd7
BLAKE2b-256 026147a6a43b7935d54b5734fbf3fb0357dd5a7d0dfaa9677b7318518fe8d507

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page