Skip to content

Commit 6438319

Browse files
committed
fix docs
1 parent 0f372dc commit 6438319

File tree

1 file changed

+11
-13
lines changed

1 file changed

+11
-13
lines changed

README.rst

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -288,21 +288,19 @@ Config and data functions
288288

289289
If you want to filter sensitive data out of the payload that is sent to Raygun, pass in a list of keys here. Any matching keys on the top level Raygun message object, or within dictionaries on the top level Raygun message object (including dictionaries nested within dictionaries) will have their value replaced with :code:`<filtered>` - useful for passwords, credit card data etc.
290290

291-
Supports wildcards:
292-
293291
Supports `*` at a position to indicate if you want to filter keys that start, end, contain or exactly match a given string.
294292

295-
+--------------------+---------------+--------------------+
296-
| Filter | Wildcard | Matches |
297-
+====================+===============+====================+
298-
| Start | 'foo_*' | foo_bar, foo_qux |
299-
+====================+===============+====================+
300-
| End | '*foo' | bar_foo, qux_foo |
301-
+====================+===============+====================+
302-
| Contain | '*foo*' | foo_bar, t_foo_qux |
303-
+====================+===============+====================+
304-
| Exact | 'foo' | foo |
305-
+--------------------+---------------+--------------------+
293+
+--------------------+---------------+----------------------+
294+
| Filter | Wildcard | Matches |
295+
+====================+===============+======================+
296+
| Start | 'foo*' | foobar, fooqux, foo |
297+
+====================+===============+======================+
298+
| End | '*foo' | barfoo, quxfoo, foo |
299+
+====================+===============+======================+
300+
| Contain | '*foo*' | foobar, tfooqux, foo |
301+
+====================+===============+======================+
302+
| Exact | 'foo' | foo |
303+
+====================+===============+======================+
306304

307305
+------------------+---------------+--------------------+
308306
| Function | Arguments | Type |

0 commit comments

Comments
 (0)