AWS Lambda
Looking for instructions on how to add Sentry without modifying your code? Check out these docs instead.
(New in version 0.3.5)
Create a deployment package on your local machine and install the required dependencies in the deployment package. For more information, see AWS Lambda deployment package in Python.
Install our Python SDK using pip
:
pip install --upgrade sentry-sdk
We also support installing Sentry as a Container Image and installing Sentry in Lambda Layer.
You can use the AWS Lambda integration for the Python SDK like this:
import sentry_sdk
from sentry_sdk.integrations.aws_lambda import AwsLambdaIntegration
sentry_sdk.init(
dsn="https://examplePublicKey@o0.ingest.sentry.io/0",
integrations=[AwsLambdaIntegration()],
traces_sample_rate=1.0, # adjust the sample rate in production as needed
)
def my_function(event, context):
# ...
Check out Sentry's AWS sample apps for detailed examples.
Note
If you are using another web framework inside of AWS Lambda, the framework might catch those exceptions before we get to see them. Make sure to enable the framework specific integration as well, if one exists. See the Python main page for more information.
Timeout Warning
(New in version 0.16.3)
The timeout warning reports an issue when the function execution time is near the configured timeout.
To enable the warning, update the SDK initialization to set timeout_warning
to
true
:
sentry_sdk.init(
dsn="https://examplePublicKey@o0.ingest.sentry.io/0",
integrations=[AwsLambdaIntegration(timeout_warning=True)]
)
The timeout warning is sent only if the timeout in the Lambda Function configuration is set to a value greater than one second.
Behavior
With the AWS Lambda integration enabled, the Python SDK will:
Automatically report all events from your Lambda Functions.
You can modify the transaction sample rate using
traces_sample_rate
.Event reports automatically include:
- A link to CloudWatch Logs
- Function details
sys.argv
for the function- AWS Request ID
- Function execution time
- Function version
- You can add more data as described here
Request data is attached to all events: HTTP method, URL, headers, form data, JSON payloads. Sentry excludes raw bodies and multipart file uploads. Sentry also excludes personally identifiable information (such as user ids, usernames, cookies, authorization headers, IP addresses) unless you set
send_default_pii
toTrue
.Each request has a separate scope. Changes to the scope within a view, for example setting a tag, will only apply to events sent as part of the request being handled.
- Package:
- pypi:sentry-sdk
- Version:
- 2.12.0
- Repository:
- https://github.com/getsentry/sentry-python