opentelemetry-lambda
opentelemetry-lambda copied to clipboard
Create your own Lambda Layer in each OTel language using this starter code. Add the Lambda Layer to your Lamdba Function to get tracing with OpenTelemetry.
Separate the instrumentation from the existing layer and provide a standalone instrumentation layer
Now that dotnet has auto-instrumentation we should consider producing a lambda layer for it
Lambda instrumentation documentation is needed for the opentelemetry.io website
The change https://github.com/open-telemetry/opentelemetry-lambda/pull/318 has been reverted in https://github.com/open-telemetry/opentelemetry-lambda/pull/321, adding an issue to track the work to bring it back once it is supported in the terraform module: https://github.com/terraform-aws-modules/terraform-aws-lambda/issues/382
**Describe the bug** The python lambda layer does not support grpc. Support for it was removed in this PR: https://github.com/open-telemetry/opentelemetry-lambda/pull/181 This is a bit misleading and not in parity with...
I have a hello world empty .NET 6 lambda with v0.68 ADOT lambda layer. collector.yaml: ``` receivers: otlp: protocols: grpc: endpoint: localhost:4317 exporters: otlp: endpoint: ${NEW_RELIC_OPENTELEMETRY_ENDPOINT} headers: api-key: ${NEW_RELIC_LICENSE_KEY} service:...
I've got a lambda which places messages on an SQS queue, and which is instrumented with open-telemetry. When the lambda places a message on the queue, it attaches two MessageAttributes...
**Describe the bug** For each lambda shutdown, I have the following log messages in CloudWatch: 2023-02-13T13:19:10.621+01:00 {"level":"info","ts":1676290750.6216786,"logger":"lifecycleManager","msg":"Received SHUTDOWN event"} 2023-02-13T13:19:10.621+01:00 {"level":"info","ts":1676290750.6218555,"logger":"telemetryAPI.Listener","msg":"HTTP Server closed:",**"error":"http: Server closed"**} The second log info message...
**Describe the bug** [Metric exporting is turned-off by default](https://github.com/open-telemetry/opentelemetry-lambda/blob/main/python/src/otel/otel_sdk/otel-instrument#L99) This is super confusing and un-documented. Caused me to spend multiple hours to understand why my metrics are not reaching the...
Currently I've 2 lambdas that are connected with a SNS trigger. Traces from both services are arriving correctly to elastic apm using the same trace id. However services map isn't...