README.rst 1.5 KB

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