Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ sidebar_order: 10

Lambda functions can be written in numerous programming languages (JavaScript,
Python, Ruby, Java, Go, ...). Sentry is currently supporting automatic
instrumentation of Lambda functions written in JavaScript and Python.
instrumentation of Lambda functions written in [JavaScript](https://docs.sentry.io/platforms/javascript/guides/aws-lambda/)
and [Python](https://docs.sentry.io/platforms/python/integrations/aws-lambda/).

See the [Sentry Documentation](https://docs.sentry.io/product/integrations/cloud-monitoring/) on how to set up serverless instrumentation.
See the [Sentry Documentation](https://docs.sentry.io/product/integrations/cloud-monitoring/)
on how to set up serverless instrumentation.

## A short primer into AWS Lambda functions, and layers.

Expand Down Expand Up @@ -79,3 +81,7 @@ this can be found [here](https://github.com/getsentry/sentry-javascript/blob/mas

To deploy a new version of the Lambda layer to AWS, you need to trigger a new
release of the JavaScript SDK.

### Development Environment

When working on the Sentry AWS Lambda layer, the workflow is that you have your example Lambda function in a dev account on AWS and then deploy your local layer and attach it to your example function. How to do this in Python is described in the [contribution guide](https://github.com/getsentry/sentry-python/blob/master/CONTRIBUTING.md#contributing-to-sentry-aws-lambda-layer) of the Python SDK.
Loading