index.rst 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. Plugins
  2. =======
  3. There are several interfaces currently available to extend Sentry. These are a work in
  4. progress and the API is not frozen.
  5. Bundled Plugins
  6. ---------------
  7. Sentry includes several plugins by default. Builtin plugins are controlled via the
  8. ``INSTALLED_APPS`` Django setting::
  9. INSTALLED_APPS = [
  10. ...
  11. 'sentry.plugins.sentry_mail',
  12. 'sentry.plugins.sentry_urls',
  13. 'sentry.plugins.sentry_useragents',
  14. ]
  15. .. data:: sentry.plugins.sentry_urls
  16. :noindex:
  17. Enables auto tagging of urls based on the Http interface contents.
  18. .. data:: sentry.plugins.sentry_mail
  19. :noindex:
  20. Enables email notifications when new events or regressions happen.
  21. .. data:: sentry.plugins.sentry_useragents
  22. :noindex:
  23. Enables auto tagging of browsers and operating systems based on the
  24. 'User-Agent' header in the HTTP interface.
  25. .. versionadded:: 4.5.0
  26. 3rd Party Extensions
  27. --------------------
  28. The following extensions are available and maintained by members of the Sentry community:
  29. * `sentry-bitbucket <https://github.com/neilalbrock/sentry-bitbucket>`_
  30. * `sentry-campfire <https://github.com/mkhattab/sentry-campfire>`_
  31. * `sentry-flowdock <https://github.com/getsentry/sentry-flowdock>`_
  32. * `sentry-github <https://github.com/getsentry/sentry-github>`_
  33. * `sentry-groveio <https://github.com/mattrobenolt/sentry-groveio>`_
  34. * `sentry-hipchat <https://github.com/linovia/sentry-hipchat>`_
  35. * `sentry-irc <https://github.com/gisce/sentry-irc>`_
  36. * `sentry-irccat <https://github.com/russss/sentry-irccat>`_
  37. * `sentry-jira <https://github.com/thurloat/sentry-jira>`_
  38. * `sentry-lighthouse <https://github.com/gthb/sentry-lighthouse>`_
  39. * `sentry-notifico <https://github.com/lukegb/sentry-notifico>`_
  40. * `sentry-phabricator <https://github.com/getsentry/sentry-phabricator>`_
  41. * `sentry-pivotal <https://github.com/getsentry/sentry-pivotal>`_
  42. * `sentry-pushover <https://github.com/dz0ny/sentry-pushover>`_
  43. * `sentry-searchbutton <https://github.com/timmyomahony/sentry-searchbutton>`_
  44. * `sentry-sprintly <https://github.com/mattrobenolt/sentry-sprintly>`_
  45. * `sentry-statsd <https://github.com/dreadatour/sentry-statsd>`_
  46. * `sentry-top <https://github.com/getsentry/sentry-top>`_
  47. * `sentry-trello <https://github.com/DamianZaremba/sentry-trello>`_
  48. * `sentry-webhooks <https://github.com/getsentry/sentry-webhooks>`_
  49. * `sentry-whatsapp <https://github.com/ecarreras/sentry-whatsapp>`_
  50. * `sentry-xmpp <https://github.com/chroto/sentry-xmpp>`_
  51. * `sentry-youtrack <https://github.com/bogdal/sentry-youtrack>`_
  52. * `sentry-slack <https://github.com/getsentry/sentry-slack>`_
  53. Have an extension that should be listed here? Submit a `pull request <https://github.com/getsentry/sentry>`_ and we'll
  54. get it added.