AWS Durable Execution SDK - OpenTelemetry Plugin
OpenTelemetry instrumentation plugin for the AWS Durable Execution SDK for Python. Emits distributed traces that correlate across multiple Lambda invocations of a single durable execution, producing deterministic span and trace IDs so that spans from different invocations are stitched into a single coherent trace.
Features
- Deterministic Trace IDs: All invocations of the same durable execution share a single trace, derived from the X-Ray trace header or execution ARN
- Span-per-Operation: Each durable operation (step, wait, invoke) gets its own span with accurate timing
- Continuation Spans: Operations completing in a different invocation are linked back to the original span
- Log Correlation: Enrich application logs with trace ID and span ID for end-to-end observability
- Configurable Sampling: Control trace volume via plugin options
- Self-Contained Setup: No manual TracerProvider configuration required
Installation
pip install aws-durable-execution-sdk-python-otel
Quick Start using X-Ray/CloudWatch Tracing
- Add the ADOT Lambda Layer to your function and set
AWS_LAMBDA_EXEC_WRAPPER=/opt/otel-instrument - Enable X-Ray Active Tracing on the function
- Pass
OtelPluginto your handler'spluginslist - Add X-Ray write permissions
1. ADOT Lambda Layer
This plugin requires the AWS Distro for OpenTelemetry (ADOT) Lambda layer to export traces from your Lambda function.
The layer ARN follows the format:
arn:aws:lambda:<region>:<awsAccountId>:layer:aws-otel-python-<arch>-ver-<version>
Refer to the ADOT Lambda Layer ARNs page for the latest version number, architecture, and supported regions.
AWS CLI:
aws lambda update-function-configuration \
--function-name your-function-name \
--layers "arn:aws:lambda:<region>:<awsAccountId>:layer:aws-otel-python-amd64-ver-<version>"
You must also set the AWS_LAMBDA_EXEC_WRAPPER environment variable:
aws lambda update-function-configuration \
--function-name your-function-name \
--environment "Variables={AWS_LAMBDA_EXEC_WRAPPER=/opt/otel-instrument}"
Note: Replace
<region>with your function's region and<version>/<arch>with the latest layer version and architecture from the ADOT docs.
CloudFormation / SAM:
MyFunction:
Type: AWS::Serverless::Function
Properties:
Layers:
- !Sub arn:aws:lambda:${AWS::Region}:<awsAccountId>:layer:aws-otel-python-amd64-ver-<version>
Environment:
Variables:
AWS_LAMBDA_EXEC_WRAPPER: /opt/otel-instrument
CDK:
from aws_cdk import aws_lambda as lambda_
adot_layer = lambda_.LayerVersion.from_layer_version_arn(
self,
"AdotLayer",
f"arn:aws:lambda:<region>:<awsAccountId>:layer:aws-otel-python-amd64-ver-<version>",
)
fn = lambda_.Function(
self,
"MyFunction",
runtime=lambda_.Runtime.PYTHON_3_12,
handler="index.handler",
code=lambda_.Code.from_asset("lambda"),
layers=[adot_layer],
environment={"AWS_LAMBDA_EXEC_WRAPPER": "/opt/otel-instrument"},
)
Tip: Pin the layer version to a specific number in production deployments to avoid unexpected behavior from automatic version changes.
2. AWS X-Ray Active Tracing
Enable active tracing on your Lambda function so the _X_AMZN_TRACE_ID environment variable is populated at invocation time. The plugin uses this header to derive deterministic trace IDs that remain consistent across all invocations of the same durable execution.
AWS Console: Lambda → Configuration → Monitoring and operations tools → Active tracing → Enable
AWS CLI:
aws lambda update-function-configuration \
--function-name your-function-name \
--tracing-config Mode=Active
CloudFormation / SAM:
MyFunction:
Type: AWS::Lambda::Function
Properties:
TracingConfig:
Mode: Active
CDK:
lambda_.Function(
self,
"MyFunction",
tracing=lambda_.Tracing.ACTIVE,
)
3. In your Lambda handler (index.py)
from aws_durable_execution_sdk_python import DurableContext
from aws_durable_execution_sdk_python.execution import durable_execution
from aws_durable_execution_sdk_python_otel import OtelPlugin
@durable_execution(plugins=[OtelPlugin()])
def handler(event: dict, context: DurableContext) -> dict:
result = context.step(lambda _: fetch_data(event["id"]), name="fetch-data")
context.wait(duration=Duration.from_seconds(5))
context.step(lambda _: process(result), name="process")
return result
That's it. The plugin handles TracerProvider setup, deterministic ID generation, and span lifecycle internally.
4. Grant Permissions
The function's execution role needs the AWSXRayDaemonWriteAccess managed policy (or equivalent permissions) if using X-Ray as the tracing backend.
Environment Variables for ADOT layer
| Variable | Description | Default |
|---|---|---|
OTEL_EXPORTER_OTLP_ENDPOINT |
Endpoint for the OTLP exporter (e.g., http://localhost:4318 for the ADOT collector sidecar) |
Set by ADOT layer |
AWS_LAMBDA_EXEC_WRAPPER |
Set to /opt/otel-instrument for the ADOT layer to instrument your function |
— |
OTEL_TRACES_SAMPLER |
Sampler to use (e.g., traceidratio for ratio-based sampling) |
always_on |
OTEL_TRACES_SAMPLER_ARG |
Argument for the sampler (e.g., 0.3 to sample 30% of traces) |
— |
See the ADOT sampling configuration for more details.
Configuration
Plugin Options
from aws_durable_execution_sdk_python_otel import (
OtelPlugin,
xray_context_extractor,
)
plugin = OtelPlugin(
# Provide your own TracerProvider if you already have one configured.
# Defaults to the globally configured tracer provider.
trace_provider=None,
# Use a custom context extractor (default: xray_context_extractor).
context_extractor=xray_context_extractor,
# Custom instrumentation scope name
# (default: "aws-durable-execution-sdk-python").
instrument_name="my-service",
# Install a root-logger filter that stamps trace context onto every
# log record (default: True).
enrich_logger=True,
)
Context Extractors
The plugin supports multiple strategies for extracting upstream trace context:
from aws_durable_execution_sdk_python_otel import (
OtelPlugin,
w3c_client_context_extractor,
xray_context_extractor,
)
# Default: X-Ray trace header (recommended for most Lambda deployments)
OtelPlugin(context_extractor=xray_context_extractor)
# W3C Trace Context via clientContext (requires backend propagation support)
OtelPlugin(context_extractor=w3c_client_context_extractor)
Log Correlation
When enrich_logger=True (the default), the plugin installs a logging filter on
the root logger at invocation start. The filter stamps the active OTel trace
context onto every emitted log record using these attributes:
traceId: 32-char hex trace identifierspanId: 16-char hex span identifierotelTraceSampled: boolean indicating if the trace is sampled
These attributes are only set when a valid span context is active, so any log formatter or schema must treat the fields as optional.
Verification
After deploying your function with the plugin configured:
-
Invoke your durable function — trigger at least one execution that includes multiple steps or a wait/resume cycle.
-
Check the CloudWatch console — Navigate to CloudWatch → Traces in the AWS Console. You should see a trace with:
- An "invocation" span per invocation
- Child spans for each durable operation (named after your step names)
- All invocations of the same execution grouped under one trace ID
-
Check log correlation — verify that your logs include
traceIdandspanIdfields matching the spans in X-Ray. -
Confirm sampling — If you set
OTEL_TRACES_SAMPLER=traceidratioandOTEL_TRACES_SAMPLER_ARGto a value less than 1.0, verify that only the expected proportion of traces appear. -
Span links — For operations that span multiple invocations (e.g., after a wait resumes), though span links are set, they are not visualized within the CloudWatch console.
Troubleshooting
| Symptom | Likely Cause |
|---|---|
| No traces appear | ADOT layer not configured, or AWS_LAMBDA_EXEC_WRAPPER not set |
| Traces appear but are fragmented | X-Ray active tracing not enabled on the Lambda function |
| Missing spans for some operations | OTEL_TRACES_SAMPLER_ARG set below 1.0 |
_X_AMZN_TRACE_ID not populated |
X-Ray active tracing not enabled |
API Reference
OtelPlugin
The main plugin class. Implements DurableInstrumentationPlugin from aws_durable_execution_sdk_python.
OtelPlugin(
trace_provider=None,
context_extractor=None,
instrument_name="aws-durable-execution-sdk-python",
enrich_logger=True,
)
DeterministicIdGenerator
A custom OpenTelemetry IdGenerator that produces reproducible trace and span IDs from execution metadata. Exported for advanced use cases.
xray_context_extractor
Default context extractor. Reads the _X_AMZN_TRACE_ID environment variable to derive trace context.
w3c_client_context_extractor
Alternative context extractor. Reads W3C traceparent from context.clientContext.custom.traceparent. Requires backend clientContext propagation to be enabled.
ContextExtractor
Type alias for custom context extractor functions.
OtelContextLogFilter / install_log_filter
The logging filter (and its installer) used to stamp trace context onto log
records. Installed automatically when enrich_logger=True; exported for manual
setups.
Requirements
- Python >= 3.11
aws-durable-execution-sdk-python>= 1.5.0opentelemetry-api>= 1.20.0opentelemetry-sdk>= 1.20.0
License
Apache-2.0
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aws_durable_execution_sdk_python_otel-0.3.0.tar.gz.
File metadata
- Download URL: aws_durable_execution_sdk_python_otel-0.3.0.tar.gz
- Upload date:
- Size: 25.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7a9363707f66b70eb73467ca5316a6b464bef2e357ac7ce5e32a80391229d1f
|
|
| MD5 |
b41b4b2c10a3fd626ff07b7f9cd854f2
|
|
| BLAKE2b-256 |
978cebf4504e9223e1b567b0472a11ca1583df3c4fe06ae4d4ae093ae91b2556
|
Provenance
The following attestation bundles were made for aws_durable_execution_sdk_python_otel-0.3.0.tar.gz:
Publisher:
pypi-publish.yml on aws/aws-durable-execution-sdk-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aws_durable_execution_sdk_python_otel-0.3.0.tar.gz -
Subject digest:
f7a9363707f66b70eb73467ca5316a6b464bef2e357ac7ce5e32a80391229d1f - Sigstore transparency entry: 2132789321
- Sigstore integration time:
-
Permalink:
aws/aws-durable-execution-sdk-python@075b65aacb80de8bb1507e3df2e53cc90cb3b874 -
Branch / Tag:
refs/tags/sdk-v1.7.0,otel-v0.3.0 - Owner: https://github.com/aws
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@075b65aacb80de8bb1507e3df2e53cc90cb3b874 -
Trigger Event:
release
-
Statement type:
File details
Details for the file aws_durable_execution_sdk_python_otel-0.3.0-py3-none-any.whl.
File metadata
- Download URL: aws_durable_execution_sdk_python_otel-0.3.0-py3-none-any.whl
- Upload date:
- Size: 21.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e05874d2b29ad3f475487e00d2b3aae95149abd02dce189e63e66956f09efe4f
|
|
| MD5 |
a6887e60ba2ea03b9f7be06c46626832
|
|
| BLAKE2b-256 |
7171e747e8a3ce3f2e21d154db6db3aa33faa42bf3ffa4070919e2f422dc5c4f
|
Provenance
The following attestation bundles were made for aws_durable_execution_sdk_python_otel-0.3.0-py3-none-any.whl:
Publisher:
pypi-publish.yml on aws/aws-durable-execution-sdk-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aws_durable_execution_sdk_python_otel-0.3.0-py3-none-any.whl -
Subject digest:
e05874d2b29ad3f475487e00d2b3aae95149abd02dce189e63e66956f09efe4f - Sigstore transparency entry: 2132789458
- Sigstore integration time:
-
Permalink:
aws/aws-durable-execution-sdk-python@075b65aacb80de8bb1507e3df2e53cc90cb3b874 -
Branch / Tag:
refs/tags/sdk-v1.7.0,otel-v0.3.0 - Owner: https://github.com/aws
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@075b65aacb80de8bb1507e3df2e53cc90cb3b874 -
Trigger Event:
release
-
Statement type: