You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We use Sentry for most of our long running web apps, mainly for its ability to track tracebacks. We ought to consider doing the same for scriptworkers. According to https://docs.sentry.io/platforms/python/#configure, it's very simple, just:
mport sentry_sdk
sentry_sdk.init(
dsn="
https://[email protected]/6262508",
# Set traces_sample_rate to 1.0 to capture 100%
# of transactions for performance monitoring.
# We recommend adjusting this value in production.
traces_sample_rate=1.0,
)
This would allow us to get tracebacks more easily than it is through the GCP console, maybe allow self serving of alerts, notifications, etc.
The text was updated successfully, but these errors were encountered:
We use Sentry for most of our long running web apps, mainly for its ability to track tracebacks. We ought to consider doing the same for scriptworkers. According to https://docs.sentry.io/platforms/python/#configure, it's very simple, just:
This would allow us to get tracebacks more easily than it is through the GCP console, maybe allow self serving of alerts, notifications, etc.
The text was updated successfully, but these errors were encountered: