From 390924adc792d8ce009915f3f18442fd6961d0a0 Mon Sep 17 00:00:00 2001 From: Viswas Haridas <37623357+JustARatherRidiculouslyLongUsername@users.noreply.github.com> Date: Tue, 12 Nov 2024 14:12:02 +0530 Subject: [PATCH] fix: remove sentry transaction sampling (#403) (cherry picked from commit b05c3d4eb3d1dca6ec60f0f3ef6513f0d64a3f44) --- fyle_xero_api/sentry.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/fyle_xero_api/sentry.py b/fyle_xero_api/sentry.py index 4e3b205e..568a24d6 100644 --- a/fyle_xero_api/sentry.py +++ b/fyle_xero_api/sentry.py @@ -13,7 +13,6 @@ def init(): send_default_pii=True, integrations=[DjangoIntegration()], environment=os.environ.get("SENTRY_ENV"), - traces_sampler=Sentry.traces_sampler, attach_stacktrace=True, before_send=Sentry.before_send, request_bodies="small", @@ -29,15 +28,6 @@ def init(): ], ) - @staticmethod - def traces_sampler(sampling_context): - # avoiding ready APIs in performance tracing - if sampling_context.get("wsgi_environ") is not None: - if "ready/" in sampling_context["wsgi_environ"]["PATH_INFO"]: - return 0 - - return 1 - @staticmethod def before_send(event, hint): if "exc_info" in hint: