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
Adding a crashing endpoint to our services could help us make that the service monitoring (logging and graph of 5XX responses) and error reporting (Sentry, slack notifs) is configured correctly.
@app.route("/__crash__")defcrash():
logger.error("about to boom")
raiseValueError("boom")
The text was updated successfully, but these errors were encountered:
I threw that confluence page together based on what @jwhitlock and I have done in the past because nothing existed and I needed something to point to. I'm game for changing the endpoint to a name that makes more sense.
Also, it should be behind basicauth or require a superuser so it doesn't allow people to spam our Sentry instance.
Adding a crashing endpoint to our services could help us make that the service monitoring (logging and graph of 5XX responses) and error reporting (Sentry, slack notifs) is configured correctly.
The text was updated successfully, but these errors were encountered: