Are there any solutions around, for sending error reports from tornado to sentry ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The standard Sentry client — Raven does support Tornado.
The Sentry DSN matches:
{PROTOCOL}://{PUBLIC_KEY}:{SECRET_KEY}@{HOST}/{PATH}{PROJECT_ID}This basically means that it will use standard Sentry HTTP protocol, but using Tornado’s AsyncHTTPClient to perform the request.
Note however, that it does not (as of now) support HTTPS, only unencrypted HTTP.