Skip to content

Commit 3ec3aa5

Browse files
committed
merge main
2 parents 5276407 + aabd5b2 commit 3ec3aa5

File tree

4 files changed

+369
-55
lines changed

4 files changed

+369
-55
lines changed

.github/workflows/release-lambda.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,10 +206,13 @@ jobs:
206206
done
207207
echo "}" >> ../layer_cdk
208208
cat ../layer_cdk
209-
- name: download layer.zip
209+
- name: download aws-opentelemetry-java-layer.zip
210210
uses: actions/download-artifact@v5
211211
with:
212-
name: layer.zip
212+
name: aws-opentelemetry-java-layer.zip
213+
- name: rename to layer.zip
214+
run: |
215+
mv aws-opentelemetry-java-layer.zip layer.zip
213216
- name: Get commit hash
214217
id: commit
215218
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,8 @@ If your change does not need a CHANGELOG entry, add the "skip changelog" label t
1313

1414
## Unreleased
1515

16+
### Enhancements
1617
- add CloudWatch EMF metrics exporter
1718
([#1209](https://github.com/aws-observability/aws-otel-java-instrumentation/pull/1209))
19+
- Support X-Ray Trace Id extraction from Lambda Context object, and respect user-configured OTEL_PROPAGATORS in AWS Lamdba instrumentation
20+
([#1191](https://github.com/aws-observability/aws-otel-java-instrumentation/pull/1191))

lambda-layer/otel-instrument

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
export OTEL_INSTRUMENTATION_AWS_SDK_EXPERIMENTAL_SPAN_ATTRIBUTES=true
44

5-
export OTEL_PROPAGATORS="${OTEL_PROPAGATORS:-baggage,xray,tracecontext}"
5+
export OTEL_PROPAGATORS="${OTEL_PROPAGATORS:-baggage,tracecontext,xray}"
66

77
export OTEL_SERVICE_NAME=${OTEL_SERVICE_NAME:-${AWS_LAMBDA_FUNCTION_NAME}}
88

0 commit comments

Comments
 (0)