Skip to content

Commit

Permalink
fix: remove sentry transaction sampling (#403)
Browse files Browse the repository at this point in the history
  • Loading branch information
1 parent 020f79f commit b05c3d4
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions fyle_xero_api/sentry.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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:
Expand Down

0 comments on commit b05c3d4

Please sign in to comment.