README.rst 1.6 KB

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