From b4200a0b6b975e409c36823983db49df95b00ee4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torma=20Krist=C3=B3f?= Date: Mon, 19 Oct 2020 22:27:32 +0200 Subject: [PATCH] add sentry tracing --- src/app.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/app.py b/src/app.py index cddc29b..cc7a197 100644 --- a/src/app.py +++ b/src/app.py @@ -30,8 +30,11 @@ if config.SENTRY_DSN: dsn=config.SENTRY_DSN, send_default_pii=True, integrations=[sentry_logging], + traces_sample_rate=1.0, + send_default_pii=True, release=config.RELEASE_ID, - environment=config.RELEASEMODE + environment=config.RELEASEMODE, + _experiments={"auto_enabling_integrations": True} )