diff options
author | Dan McGee <dan@archlinux.org> | 2013-02-28 08:28:00 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2013-02-28 08:28:00 -0600 |
commit | f2b8ac1ef8831e96bf273b71585e35d578821bb4 (patch) | |
tree | 20bffa25d7edcfb1152b2ebdc21642f9db2b9f92 /newrelic.ini | |
parent | d98ab844a03b0579051cece998e7c18a048c21ab (diff) |
Add django.http.response:Http404 to ignored NewRelic errors
This moved around in Django 1.5, so add it to the override list so it
continues to be ignore like it was in older versions of Django.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'newrelic.ini')
-rw-r--r-- | newrelic.ini | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newrelic.ini b/newrelic.ini index ad31a3c6..98cca5b6 100644 --- a/newrelic.ini +++ b/newrelic.ini @@ -153,7 +153,7 @@ error_collector.enabled = true # To stop specific errors from reporting to the UI, set this to # a space separated list of the Python exception type names to # ignore. The exception name should be of the form 'module:class'. -error_collector.ignore_errors = +error_collector.ignore_errors = django.http.response:Http404 # Browser monitoring is the Real User Monitoring feature of the UI. # For those Python web frameworks that are supported, this |