28 lines
643 B
Python
28 lines
643 B
Python
from os import getenv
|
|
|
|
import rollbar
|
|
|
|
from sanic import Sanic
|
|
from sanic.exceptions import SanicException
|
|
from sanic.handlers import ErrorHandler
|
|
|
|
rollbar.init(getenv("ROLLBAR_API_KEY"))
|
|
|
|
|
|
class RollbarExceptionHandler(ErrorHandler):
|
|
def default(self, request, exception):
|
|
rollbar.report_message(str(exception))
|
|
return super().default(request, exception)
|
|
|
|
|
|
app = Sanic("Example", error_handler=RollbarExceptionHandler())
|
|
|
|
|
|
@app.route("/raise")
|
|
def create_error(request):
|
|
raise SanicException("I was here and I don't like where I am")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app.run(host="0.0.0.0", port=getenv("PORT", 8080))
|