summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Cramer <dcramer@gmail.com>2015-07-15 23:02:13 -0700
committerDavid Cramer <dcramer@gmail.com>2015-07-15 23:02:13 -0700
commit18fc6e4d3f6ec29cc44676082adae06df5a8de8b (patch)
treeda0614121cba01d72f5316abc4e498e872de6411
parent728622d6c0c47bbfbfd0d57865ff6be9198ab3fa (diff)
downloadraven-18fc6e4d3f6ec29cc44676082adae06df5a8de8b.tar.gz
Expand config docs
-rw-r--r--docs/config/index.rst27
1 files changed, 27 insertions, 0 deletions
diff --git a/docs/config/index.rst b/docs/config/index.rst
index 0b26621..bbd5054 100644
--- a/docs/config/index.rst
+++ b/docs/config/index.rst
@@ -82,6 +82,16 @@ A sentry compatible DSN.
dsn = 'http://public:secret@example.com/1'
+transport
+~~~~~~~~~
+
+The transport implementation to use.
+
+::
+
+ transport = ThreadedHTTPTransport
+
+
name
~~~~
@@ -116,6 +126,7 @@ Extending this allow you to ignore module prefixes when we attempt to discover w
'lxml.objectify',
]
+
include_paths
~~~~~~~~~~~~~
@@ -130,6 +141,7 @@ For example, in Django this defaults to your list of ``INSTALLED_APPS``, and is
'lxml.objectify',
]
+
list_max_length
~~~~~~~~~~~~~~~
@@ -143,6 +155,7 @@ If an iterable is longer than the specified length, the left-most elements up to
list_max_length = 50
+
string_max_length
~~~~~~~~~~~~~~~~~
@@ -154,6 +167,7 @@ If a string is longer than the given length, it will be truncated down to the sp
string_max_length = 200
+
auto_log_stacks
~~~~~~~~~~~~~~~
@@ -177,6 +191,19 @@ additional global state data or sanitizing data that you want to keep off of the
'raven.processors.SanitizePasswordsProcessor',
)
+
+install_sys_hook
+~~~~~~~~~~~~~~~~
+
+Install a global exception hook (via ``sys.excepthook``).
+
+Defaults to ``True``.
+
+::
+
+ install_sys_hook = False
+
+
Sanitizing Data
---------------