beacon.rst 1004 B

1234567891011121314151617181920212223242526272829303132
  1. Beacon
  2. ======
  3. Sentry will periodically communicate with a remote beacon server. This is
  4. utilized for a couple of things, primarily:
  5. - Getting information about the current version of Sentry
  6. - Retrieving important system notices
  7. The remote server is operated by the Sentry team (sentry.io), and the
  8. information reported follows the company's `privacy policy
  9. <https://sentry.io/privacy/>`_.
  10. The following information is reported:
  11. - A unique installation ID
  12. - The version of Sentry
  13. - A technical contact email (``system.admin-email``)
  14. - General anonymous statistics on the data pattern (such as the number of
  15. users and volume of errors)
  16. - Names and version of the installed Python modules
  17. Note: The contact email is utilized for security announcements, and will
  18. never be used outside of such.
  19. The data reported is minimal and it greatly helps the development team
  20. behind Sentry. With that said, you can disable the beacon with the
  21. following setting:
  22. .. code-block:: python
  23. SENTRY_BEACON = False