PageRenderTime 523ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/docs/howto/error-reporting.txt

https://github.com/adamkal/django
Plain Text | 281 lines | 210 code | 71 blank | 0 comment | 0 complexity | d87ce287636bbb80ecfdffa7ee9c561d MD5 | raw file
Possible License(s): BSD-3-Clause
  1. Error reporting
  2. ===============
  3. When you're running a public site you should always turn off the
  4. :setting:`DEBUG` setting. That will make your server run much faster, and will
  5. also prevent malicious users from seeing details of your application that can be
  6. revealed by the error pages.
  7. However, running with :setting:`DEBUG` set to ``False`` means you'll never see
  8. errors generated by your site -- everyone will just see your public error pages.
  9. You need to keep track of errors that occur in deployed sites, so Django can be
  10. configured to create reports with details about those errors.
  11. Email reports
  12. -------------
  13. Server errors
  14. ~~~~~~~~~~~~~
  15. When :setting:`DEBUG` is ``False``, Django will email the users listed in the
  16. :setting:`ADMINS` setting whenever your code raises an unhandled exception and
  17. results in an internal server error (HTTP status code 500). This gives the
  18. administrators immediate notification of any errors. The :setting:`ADMINS` will
  19. get a description of the error, a complete Python traceback, and details about
  20. the HTTP request that caused the error.
  21. .. note::
  22. In order to send email, Django requires a few settings telling it
  23. how to connect to your mail server. At the very least, you'll need
  24. to specify :setting:`EMAIL_HOST` and possibly
  25. :setting:`EMAIL_HOST_USER` and :setting:`EMAIL_HOST_PASSWORD`,
  26. though other settings may be also required depending on your mail
  27. server's configuration. Consult :doc:`the Django settings
  28. documentation </ref/settings>` for a full list of email-related
  29. settings.
  30. By default, Django will send email from root@localhost. However, some mail
  31. providers reject all email from this address. To use a different sender
  32. address, modify the :setting:`SERVER_EMAIL` setting.
  33. To activate this behavior, put the email addresses of the recipients in the
  34. :setting:`ADMINS` setting.
  35. .. seealso::
  36. Server error emails are sent using the logging framework, so you can
  37. customize this behavior by :doc:`customizing your logging configuration
  38. </topics/logging>`.
  39. 404 errors
  40. ~~~~~~~~~~
  41. Django can also be configured to email errors about broken links (404 "page
  42. not found" errors). Django sends emails about 404 errors when:
  43. * :setting:`DEBUG` is ``False``;
  44. * Your :setting:`MIDDLEWARE_CLASSES` setting includes
  45. :class:`django.middleware.common.BrokenLinkEmailsMiddleware`.
  46. If those conditions are met, Django will email the users listed in the
  47. :setting:`MANAGERS` setting whenever your code raises a 404 and the request has
  48. a referer. (It doesn't bother to email for 404s that don't have a referer --
  49. those are usually just people typing in broken URLs or broken Web 'bots).
  50. .. note::
  51. :class:`~django.middleware.common.BrokenLinkEmailsMiddleware` must appear
  52. before other middleware that intercepts 404 errors, such as
  53. :class:`~django.middleware.locale.LocaleMiddleware` or
  54. :class:`~django.contrib.flatpages.middleware.FlatpageFallbackMiddleware`.
  55. Put it towards the top of your :setting:`MIDDLEWARE_CLASSES` setting.
  56. You can tell Django to stop reporting particular 404s by tweaking the
  57. :setting:`IGNORABLE_404_URLS` setting. It should be a tuple of compiled
  58. regular expression objects. For example::
  59. import re
  60. IGNORABLE_404_URLS = (
  61. re.compile(r'\.(php|cgi)$'),
  62. re.compile(r'^/phpmyadmin/'),
  63. )
  64. In this example, a 404 to any URL ending with ``.php`` or ``.cgi`` will *not* be
  65. reported. Neither will any URL starting with ``/phpmyadmin/``.
  66. The following example shows how to exclude some conventional URLs that browsers and
  67. crawlers often request::
  68. import re
  69. IGNORABLE_404_URLS = (
  70. re.compile(r'^/apple-touch-icon.*\.png$'),
  71. re.compile(r'^/favicon\.ico$'),
  72. re.compile(r'^/robots\.txt$'),
  73. )
  74. (Note that these are regular expressions, so we put a backslash in front of
  75. periods to escape them.)
  76. If you'd like to customize the behavior of
  77. :class:`django.middleware.common.BrokenLinkEmailsMiddleware` further (for
  78. example to ignore requests coming from web crawlers), you should subclass it
  79. and override its methods.
  80. .. seealso::
  81. 404 errors are logged using the logging framework. By default, these log
  82. records are ignored, but you can use them for error reporting by writing a
  83. handler and :doc:`configuring logging </topics/logging>` appropriately.
  84. .. _filtering-error-reports:
  85. Filtering error reports
  86. -----------------------
  87. Filtering sensitive information
  88. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  89. .. currentmodule:: django.views.decorators.debug
  90. Error reports are really helpful for debugging errors, so it is generally
  91. useful to record as much relevant information about those errors as possible.
  92. For example, by default Django records the `full traceback`_ for the
  93. exception raised, each `traceback frame`_’s local variables, and the
  94. :class:`~django.http.HttpRequest`’s :ref:`attributes<httprequest-attributes>`.
  95. However, sometimes certain types of information may be too sensitive and thus
  96. may not be appropriate to be kept track of, for example a user's password or
  97. credit card number. So Django offers a set of function decorators to help you
  98. control which information should be filtered out of error reports in a
  99. production environment (that is, where :setting:`DEBUG` is set to ``False``):
  100. :func:`sensitive_variables` and :func:`sensitive_post_parameters`.
  101. .. _`full traceback`: http://en.wikipedia.org/wiki/Stack_trace
  102. .. _`traceback frame`: http://en.wikipedia.org/wiki/Stack_frame
  103. .. function:: sensitive_variables(*variables)
  104. If a function (either a view or any regular callback) in your code uses
  105. local variables susceptible to contain sensitive information, you may
  106. prevent the values of those variables from being included in error reports
  107. using the ``sensitive_variables`` decorator::
  108. from django.views.decorators.debug import sensitive_variables
  109. @sensitive_variables('user', 'pw', 'cc')
  110. def process_info(user):
  111. pw = user.pass_word
  112. cc = user.credit_card_number
  113. name = user.name
  114. ...
  115. In the above example, the values for the ``user``, ``pw`` and ``cc``
  116. variables will be hidden and replaced with stars (`**********`) in the
  117. error reports, whereas the value of the ``name`` variable will be
  118. disclosed.
  119. To systematically hide all local variables of a function from error logs,
  120. do not provide any argument to the ``sensitive_variables`` decorator::
  121. @sensitive_variables()
  122. def my_function():
  123. ...
  124. .. admonition:: When using multiple decorators
  125. If the variable you want to hide is also a function argument (e.g.
  126. '``user``’ in the following example), and if the decorated function has
  127. multiple decorators, then make sure to place ``@sensitive_variables``
  128. at the top of the decorator chain. This way it will also hide the
  129. function argument as it gets passed through the other decorators::
  130. @sensitive_variables('user', 'pw', 'cc')
  131. @some_decorator
  132. @another_decorator
  133. def process_info(user):
  134. ...
  135. .. function:: sensitive_post_parameters(*parameters)
  136. If one of your views receives an :class:`~django.http.HttpRequest` object
  137. with :attr:`POST parameters<django.http.HttpRequest.POST>` susceptible to
  138. contain sensitive information, you may prevent the values of those
  139. parameters from being included in the error reports using the
  140. ``sensitive_post_parameters`` decorator::
  141. from django.views.decorators.debug import sensitive_post_parameters
  142. @sensitive_post_parameters('pass_word', 'credit_card_number')
  143. def record_user_profile(request):
  144. UserProfile.create(user=request.user,
  145. password=request.POST['pass_word'],
  146. credit_card=request.POST['credit_card_number'],
  147. name=request.POST['name'])
  148. ...
  149. In the above example, the values for the ``pass_word`` and
  150. ``credit_card_number`` POST parameters will be hidden and replaced with
  151. stars (`**********`) in the request's representation inside the error
  152. reports, whereas the value of the ``name`` parameter will be disclosed.
  153. To systematically hide all POST parameters of a request in error reports,
  154. do not provide any argument to the ``sensitive_post_parameters`` decorator::
  155. @sensitive_post_parameters()
  156. def my_view(request):
  157. ...
  158. All POST parameters are systematically filtered out of error reports for
  159. certain :mod:`django.contrib.auth.views` views (``login``,
  160. ``password_reset_confirm``, ``password_change``, and ``add_view`` and
  161. ``user_change_password`` in the ``auth`` admin) to prevent the leaking of
  162. sensitive information such as user passwords.
  163. .. _custom-error-reports:
  164. Custom error reports
  165. ~~~~~~~~~~~~~~~~~~~~
  166. All :func:`sensitive_variables` and :func:`sensitive_post_parameters` do is,
  167. respectively, annotate the decorated function with the names of sensitive
  168. variables and annotate the ``HttpRequest`` object with the names of sensitive
  169. POST parameters, so that this sensitive information can later be filtered out
  170. of reports when an error occurs. The actual filtering is done by Django's
  171. default error reporter filter:
  172. :class:`django.views.debug.SafeExceptionReporterFilter`. This filter uses the
  173. decorators' annotations to replace the corresponding values with stars
  174. (`**********`) when the error reports are produced. If you wish to override or
  175. customize this default behavior for your entire site, you need to define your
  176. own filter class and tell Django to use it via the
  177. :setting:`DEFAULT_EXCEPTION_REPORTER_FILTER` setting::
  178. DEFAULT_EXCEPTION_REPORTER_FILTER = 'path.to.your.CustomExceptionReporterFilter'
  179. You may also control in a more granular way which filter to use within any
  180. given view by setting the ``HttpRequest``’s ``exception_reporter_filter``
  181. attribute::
  182. def my_view(request):
  183. if request.user.is_authenticated():
  184. request.exception_reporter_filter = CustomExceptionReporterFilter()
  185. ...
  186. .. currentmodule:: django.views.debug
  187. Your custom filter class needs to inherit from
  188. :class:`django.views.debug.SafeExceptionReporterFilter` and may override the
  189. following methods:
  190. .. class:: SafeExceptionReporterFilter
  191. .. method:: SafeExceptionReporterFilter.is_active(request)
  192. Returns ``True`` to activate the filtering operated in the other methods.
  193. By default the filter is active if :setting:`DEBUG` is ``False``.
  194. .. method:: SafeExceptionReporterFilter.get_request_repr(request)
  195. Returns the representation string of the request object, that is, the
  196. value that would be returned by ``repr(request)``, except it uses the
  197. filtered dictionary of POST parameters as determined by
  198. :meth:`SafeExceptionReporterFilter.get_post_parameters`.
  199. .. method:: SafeExceptionReporterFilter.get_post_parameters(request)
  200. Returns the filtered dictionary of POST parameters. By default it replaces
  201. the values of sensitive parameters with stars (`**********`).
  202. .. method:: SafeExceptionReporterFilter.get_traceback_frame_variables(request, tb_frame)
  203. Returns the filtered dictionary of local variables for the given traceback
  204. frame. By default it replaces the values of sensitive variables with stars
  205. (`**********`).
  206. .. seealso::
  207. You can also set up custom error reporting by writing a custom piece of
  208. :ref:`exception middleware <exception-middleware>`. If you do write custom
  209. error handling, it's a good idea to emulate Django's built-in error handling
  210. and only report/log errors if :setting:`DEBUG` is ``False``.