2018-12-10 15:05:02 +00:00
|
|
|
from os import getenv
|
|
|
|
|
|
|
|
from raygun4py.raygunprovider import RaygunSender
|
|
|
|
|
|
|
|
from sanic import Sanic
|
|
|
|
from sanic.exceptions import SanicException
|
|
|
|
from sanic.handlers import ErrorHandler
|
|
|
|
|
|
|
|
|
|
|
|
class RaygunExceptionReporter(ErrorHandler):
|
|
|
|
def __init__(self, raygun_api_key=None):
|
|
|
|
super().__init__()
|
|
|
|
if raygun_api_key is None:
|
|
|
|
raygun_api_key = getenv("RAYGUN_API_KEY")
|
|
|
|
|
|
|
|
self.sender = RaygunSender(raygun_api_key)
|
|
|
|
|
|
|
|
def default(self, request, exception):
|
|
|
|
self.sender.send_exception(exception=exception)
|
|
|
|
return super().default(request, exception)
|
|
|
|
|
|
|
|
|
|
|
|
raygun_error_reporter = RaygunExceptionReporter()
|
2021-12-23 22:30:27 +00:00
|
|
|
app = Sanic("Example", error_handler=raygun_error_reporter)
|
2018-12-10 15:05:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
@app.route("/raise")
|
|
|
|
async def test(request):
|
2021-12-23 22:30:27 +00:00
|
|
|
raise SanicException("You Broke It!")
|
2018-12-10 15:05:02 +00:00
|
|
|
|
|
|
|
|
2021-12-23 22:30:27 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
app.run(host="0.0.0.0", port=getenv("PORT", 8080))
|