Skip to content

Commit f12b40a

Browse files
committed
Merge pull request #240 from robinwassen/master
Updated documentation with some clarification of the optional settings
2 parents 3fc8067 + 45f8629 commit f12b40a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

docs/config/index.rst

+7-1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ whitelistUrls
5353

5454
The inverse of ``ignoreUrls``. Only report errors from whole urls matching a regex pattern or an exact string. ``whitelistUrls`` should match the url of your actual JavaScript files. It should match the url of your site if and only if you are inlining code inside ``<script>`` tags.
5555

56+
Does not affect captureMessage or when non-error object is passed in as argument to captureException.
57+
5658
.. code-block:: javascript
5759
5860
{
@@ -64,6 +66,8 @@ ignoreErrors
6466

6567
Very often, you will come across specific errors that are a result of something other than your application, or errors that you're completely not interested in. `ignoreErrors` is a list of these messages to be filtered out before being sent to Sentry as either regular expressions or strings.
6668

69+
Does not affect captureMessage or when non-error object is passed in as argument to captureException.
70+
6771
.. code-block:: javascript
6872
6973
{
@@ -81,10 +85,12 @@ The inverse of ``whitelistUrls`` and similar to ``ignoreErrors``, but will ignor
8185
ignoreUrls: [/graph\.facebook\.com/, 'http://example.com/script2.js']
8286
}
8387
88+
Does not affect captureMessage or when non-error object is passed in as argument to captureException.
89+
8490
includePaths
8591
------------
8692

87-
An array of regex patterns to indicate which urls are a part of your app. All other frames will appear collapsed inside Sentry to make it easier to discern between frames that happened in your code vs other code. It'd be suggested to add the current page url, and the host for your CDN.
93+
An array of regex patterns to indicate which urls are a part of your app in the stack trace. All other frames will appear collapsed inside Sentry to make it easier to discern between frames that happened in your code vs other code. It'd be suggested to add the current page url, and the host for your CDN.
8894

8995
.. code-block:: javascript
9096

0 commit comments

Comments
 (0)