diff --git a/develop-docs/sdk/platform-specifics/serverless-sdks/aws-lambda.mdx b/develop-docs/sdk/platform-specifics/serverless-sdks/aws-lambda.mdx index 218c9e1cf657a..5384a403ef7a1 100644 --- a/develop-docs/sdk/platform-specifics/serverless-sdks/aws-lambda.mdx +++ b/develop-docs/sdk/platform-specifics/serverless-sdks/aws-lambda.mdx @@ -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. @@ -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.