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: