Is Sentry (python/django) compatible with Mongodb?
If not, is there an easy solution to make it compatible?
Thanks guys.
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.
Sentry is built on a relational DB, and thus will require such for the foreseeable future. It’s possible to implement most things in many NoSQL solutions, but the various types of indexes, and some of the (newer) advanced SQL would be a lot more work.
As an example, Sentry 2.0 includes a “Trending” option, which is calculated real-time, and would require writing a map/reduce query in something like MongoDB (whereas it just works everywhere else).
You can easily use the Raven client, and setup an additional Django site for the Sentry server. It’s as easy as pip install django-sentry && sentry start