Skip to content

Commit

Permalink
Merge pull request #153 from rollbar/dan.s/ch6587/fully-document-pyro…
Browse files Browse the repository at this point in the history
…llbar-configuration-options

Add missing variables to config docs
  • Loading branch information
stclairdaniel authored Jan 18, 2017
2 parents 41d9691 + eaacfd4 commit 9ac2399
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,10 @@ Default: `thread`
<dd>A list of `type` objects, (e.g. `type(my_class_instance)` or `MyClass`) that will be serialized using
`repr()`. Default `[]`
</dd>
<dt>scrub_varargs
</dt>
<dd>If `True`, variable argument values will be scrubbed. Default `True`.
</dd>
</dl>
</dd>
<dt>root
Expand All @@ -461,7 +465,7 @@ Default: `thread`
</dt>
<dd>List of sensitive field names to scrub out of request params and locals. Values will be replaced with asterisks. If overriding, make sure to list all fields you want to scrub, not just fields you want to add to the default. Param names are converted to lowercase before comparing against the scrub list.

Default: `['pw', 'passwd', 'password', 'secret', 'confirm_password', 'confirmPassword', 'password_confirmation', 'passwordConfirmation', 'access_token', 'auth', 'authentication']`
Default: `['pw', 'passwd', 'password', 'secret', 'confirm_password', 'confirmPassword', 'password_confirmation', 'passwordConfirmation', 'access_token', 'accessToken', 'auth', 'authentication']`

</dd>
<dt>timeout
Expand All @@ -477,6 +481,14 @@ Default: `3`

Default: `True`

<dt>url_fields
</dt>
<dd>List of fields treated as URLs and scrubbed. Default `['url', 'link', 'href']`
</dd>
<dt>verify_https
</dt>
<dd>If `True`, network requests will fail unless encountering a valid certificate. Default `True`.
</dd>
</dd>
</dl>

Expand Down

0 comments on commit 9ac2399

Please sign in to comment.