2022-12-05 01:08:23 +00:00
|
|
|
from contextlib import contextmanager
|
|
|
|
|
|
|
|
from django.conf import settings
|
|
|
|
|
|
|
|
SENTRY_ENABLED = False
|
|
|
|
try:
|
|
|
|
if settings.SETUP.SENTRY_DSN:
|
|
|
|
import sentry_sdk
|
|
|
|
|
|
|
|
SENTRY_ENABLED = True
|
|
|
|
except ImportError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def noop(*args, **kwargs):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
@contextmanager
|
|
|
|
def noop_context(*args, **kwargs):
|
|
|
|
yield
|
|
|
|
|
|
|
|
|
|
|
|
if SENTRY_ENABLED:
|
|
|
|
configure_scope = sentry_sdk.configure_scope
|
|
|
|
push_scope = sentry_sdk.push_scope
|
|
|
|
set_context = sentry_sdk.set_context
|
|
|
|
set_tag = sentry_sdk.set_tag
|
|
|
|
start_transaction = sentry_sdk.start_transaction
|
2023-11-16 17:27:20 +00:00
|
|
|
start_span = sentry_sdk.start_span
|
2022-12-05 01:08:23 +00:00
|
|
|
else:
|
|
|
|
configure_scope = noop_context
|
|
|
|
push_scope = noop_context
|
|
|
|
set_context = noop
|
|
|
|
set_tag = noop
|
|
|
|
start_transaction = noop_context
|
2023-11-16 17:27:20 +00:00
|
|
|
start_span = noop_context
|
2022-12-05 01:08:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
def set_takahe_app(name: str):
|
|
|
|
set_tag("takahe.app", name)
|
|
|
|
|
|
|
|
|
|
|
|
def scope_clear(scope):
|
|
|
|
if scope:
|
|
|
|
scope.clear()
|
|
|
|
|
|
|
|
|
|
|
|
def set_transaction_name(scope, name: str):
|
|
|
|
if scope:
|
|
|
|
scope.set_transaction_name(name)
|