README.rst 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. Sentry
  2. ======
  3. .. image:: https://secure.travis-ci.org/getsentry/sentry.png?branch=master
  4. :target: http://travis-ci.org/getsentry/sentry
  5. .. image:: https://coveralls.io/repos/getsentry/sentry/badge.png?branch=master
  6. :target: https://coveralls.io/r/getsentry/sentry?branch=master
  7. .. image:: https://d2weczhvl823v0.cloudfront.net/getsentry/sentry/trend.png
  8. :target: https://bitdeli.com/free
  9. Sentry is a realtime event logging and aggregation platform. It specializes
  10. in monitoring errors and extracting all the information needed to do a proper
  11. post-mortem without any of the hassle of the standard user feedback loop.
  12. Screenshots
  13. -----------
  14. .. image:: https://github.com/getsentry/sentry/raw/master/docs/images/group_list.png
  15. .. image:: https://github.com/getsentry/sentry/raw/master/docs/images/event.png
  16. .. image:: https://github.com/getsentry/sentry/raw/master/docs/images/dashboard.png
  17. Sentry is a Server
  18. ------------------
  19. The Sentry package, at its core, is just a simple server and web UI. It will
  20. handle authenticating clients (such as `Raven <https://github.com/getsentry/raven-python>`_)
  21. and all of the logic behind storage and aggregation.
  22. That said, Sentry is not limited to Python. The primary implementation is in
  23. Python, but it contains a full API for sending events from any language, in
  24. any application.
  25. Resources
  26. ---------
  27. * `Documentation <http://sentry.readthedocs.org/>`_
  28. * `Bug Tracker <http://github.com/getsentry/sentry/issues>`_
  29. * `Code <http://github.com/getsentry/sentry>`_
  30. * `Mailing List <https://groups.google.com/group/getsentry>`_
  31. * `IRC <irc://irc.freenode.net/sentry>`_ (irc.freenode.net, #sentry)
  32. * `Transifex <https://www.transifex.com/projects/p/sentry/>`_ (Translate Sentry!)
  33. The `in-development version <http://github.com/getsentry/sentry/tarball/master#egg=sentry-dev>`_
  34. of Sentry can be installed with ``pip install sentry==dev`` or ``easy_install sentry==dev``.