Skip to content

Commit

Permalink
fix: remove sentry transaction sampling (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
1 parent c966a7a commit 1d4dc7f
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions ms_business_central_api/sentry.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,12 @@ 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',
in_app_include=['apps.users', 'apps.workspaces', 'apps.mappings', 'apps.fyle', 'apps.business_central', 'apps.accounting_exports', 'fyle_rest_auth', 'fyle_accounting_mappings'],
)

@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 1d4dc7f

Please sign in to comment.