Sentry’s added context and Breadcrumbs include the event history and actions that led up to every bug. No more debugging customer stories about how they clicked the thing and then this other thing did a weird thing.
pip install sentry-sdk
Install the sdk
2.Initialize the sdk
import sentry_sdk
from sentry_sdk.integrations.django import \
DjangoIntegration
sentry_sdk.init(
"your dsn",
integrations=[DjangoIntegration()]
)