opentelemetry-lambda icon indicating copy to clipboard operation
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.

Results 188 opentelemetry-lambda issues
Sort by recently updated
recently updated
newest added

``` ipp.appDone = make(chan struct{}) go func() { defer close(ipp.appDone) appErr := ipp.svc.Run() if appErr != nil { err = appErr } }() ``` The err assignment here can happen...

The collector may become unhealthy even without crashing due to some issue. If Lambda extensions have a mechanism for reporting healthyness, for example by exposing the health check HTTP endpoint...

Refer discussion in https://github.com/open-telemetry/opentelemetry-lambda/pull/21#discussion_r608305375 Right now Lambda collector extension has only Collect-core exporters, such as `otlpgrpcexporter`, `loggingexporter`, etc. Can we bring in popular exporters like `awsxrayexporter`, `datadogexporter`? AWS has maintained...

First of all, great initiative for putting this AWS Lambda Extension together 👍 Is there any option to configure the propagator to be B3 Propagator? https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/context/api-propagators.md https://github.com/openzipkin/b3-propagation

**Describe the bug** It would be great to have a CI check for links in this repository. See https://github.com/open-telemetry/opentelemetry-collector/blob/main/.github/workflows/check-links.yaml as an example

good first issue
help wanted

The current Java wrapper Lamdba layer drops the SQS message before it gets to the handler. This update enables the special handler for SQS-triggered functions as [documented here](https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/f236b2d4c9a0813b2dddf3d35928c79b21beb6d5/instrumentation/aws-lambda/aws-lambda-events-2.2/library).

Fix #291 Add X-Ray support in ADOT collector

This issue is related to opentelemetry-lamba for NodeJS. My project is using Sentry to report all unhandled errors. We integrated Sentry into our project by using the official lambda [layer](https://docs.sentry.io/platforms/node/guides/aws-lambda/layer/)....

I'd like to use AWS X-Ray with AWS Lambda Extension layer. It seems that the collector doesn't support AWS X-Ray exporter. I found that there is configuration for X-Ray exporter...

Hello! I am interested in setting up lambda functions as AppSync data sources. One of my goals is to propagate the trace Id from a browser-instrumented fetch call through to...

Stale