inbox/services/sentry.py
Untone 2b3aa43faf
Some checks failed
deploy / deploy (push) Failing after 14s
glitchtip
2024-04-09 20:19:46 +03:00

31 lines
995 B
Python

import sentry_sdk
from sentry_sdk.integrations.ariadne import AriadneIntegration
from sentry_sdk.integrations.redis import RedisIntegration
from sentry_sdk.integrations.starlette import StarletteIntegration
from settings import GLITCHTIP_DSN
def start_sentry():
# sentry monitoring
try:
sentry_sdk.init(
GLITCHTIP_DSN,
# Set traces_sample_rate to 1.0 to capture 100%
# of transactions for performance monitoring.
traces_sample_rate=1.0,
# Set profiles_sample_rate to 1.0 to profile 100%
# of sampled transactions.
# We recommend adjusting this value in production.
profiles_sample_rate=1.0,
enable_tracing=True,
integrations=[
StarletteIntegration(),
AriadneIntegration(),
RedisIntegration(),
],
)
except Exception as e:
print("[services.sentry] init error")
print(e)