You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lambda-layer/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# AWS Lambda Application Signals Support
2
2
3
-
This package provides support for **Application Signals** in AWS Lambda environment.
3
+
This folder provides support for **Application Signals** in AWS Lambda environments. You can explore this repository to learn how to build a Lambda layer for AWS Python Runtimes from scratch in your AWS account. Alternatively, you can directly visit the AWS documentation, [Enable Application Signals on Lambda functions](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Application-Signals-Enable-Lambda.html), and use the AWS-managed Lambda layers we provide.
4
4
5
5
## Features
6
6
@@ -53,4 +53,4 @@ Lambda function and view the traces and metrics through the AWS CloudWatch Conso
53
53
By default the layer enable botocore and aws-lambda instrumentation libraries only for better Lambda cold start performance. To
54
54
enable all opentelemetry python
55
55
supported libraries you can set environment variable `OTEL_PYTHON_DISABLED_INSTRUMENTATIONS=none`. Refer to details in
56
-
[OpenTelemetry Python Disabling Specific Instrumentations](Disabling Specific Instrumentations)
56
+
[OpenTelemetry Python Disabling Specific Instrumentations](https://opentelemetry.io/docs/zero-code/python/configuration/#disabling-specific-instrumentations)
Copy file name to clipboardExpand all lines: lambda-layer/terraform/lambda/variables.tf
+2-8Lines changed: 2 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
variable"sdk_layer_name" {
2
2
type=string
3
3
description="Name of published SDK layer"
4
-
default="aws-opentelemetry-distro-python"
4
+
default="AWSOpenTelemetryDistroPython"
5
5
}
6
6
7
7
variable"function_name" {
@@ -19,17 +19,11 @@ variable "architecture" {
19
19
variable"runtime" {
20
20
type=string
21
21
description="Python runtime version used for sample Lambda Function"
22
-
default="python3.12"
22
+
default="python3.13"
23
23
}
24
24
25
25
variable"tracing_mode" {
26
26
type=string
27
27
description="Lambda function tracing mode"
28
28
default="Active"
29
29
}
30
-
31
-
variable"enable_collector_layer" {
32
-
type=bool
33
-
description="Enables building and usage of a layer for the collector. If false, it means either the SDK layer includes the collector or it is not used."
0 commit comments