Created
August 7, 2020 05:41
-
-
Save bolinocroustibat/3ec52cb919c7fe0e5921fc27d356085e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sentry_sdk | |
from sentry_sdk.integrations.aws_lambda import AwsLambdaIntegration | |
import toml | |
config = toml.load("./pyproject.toml") | |
# Sentry error logging | |
app_name = config["tool"]["poetry"]["name"] | |
version = config["tool"]["poetry"]["version"] | |
sentry_sdk.init( | |
dsn=os.environ["SENTRY_DSN"], | |
integrations=[AwsLambdaIntegration()], | |
environment=os.environ["STAGE_NAME"], | |
release=f"{app_name}@{version}", | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment