From 32672b85da16360c425ce1fb707735fc8fff3488 Mon Sep 17 00:00:00 2001 From: Charly Gomez Date: Wed, 23 Apr 2025 14:23:28 +0200 Subject: [PATCH] beepboop --- includes/platforms/configuration/options/deny-urls.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/platforms/configuration/options/deny-urls.mdx b/includes/platforms/configuration/options/deny-urls.mdx index 0233defdc87df..424357000303a 100644 --- a/includes/platforms/configuration/options/deny-urls.mdx +++ b/includes/platforms/configuration/options/deny-urls.mdx @@ -3,4 +3,6 @@ Errors that have been created on these URLs won't be sent to Sentry. If you use this option, errors will not be sent when the top stack frame file URL contains or matches at least one entry in the `denyUrls` array. All string entries in the array will be matched with `stackFrameUrl.contains(entry)`, while all RegEx entries will be matched with `stackFrameUrl.match(entry)`. +This option checks the source file URL in the stack trace, not the HTTP URL where the error was reported. For more fine grained filtering please refer to [beforeSend](/platforms/javascript/guides/react/configuration/options/#beforeSend). + This matching logic applies to captured exceptions not raw message events. By default, all errors are sent.