You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/platforms/dotnet/common/configuration/filtering.mdx
+27-1
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ We also offer [Inbound Filters](/concepts/data-management/filtering/) to filter
12
12
13
13
## Filtering Error Events
14
14
15
-
Configure your SDK to filter error events by using the <PlatformIdentifiername="before-send" /> callback method and configuring, enabling, or disabling integrations.
15
+
To prevent certain errors from being reported to Sentry, use the <PlatformIdentifiername="before-send" /> or <PlatformIdentifiername="add-exception-filter" /> configuration options, which allows you to evaluate whether to send an error or now. Alternatively, you can also control the behaviour by enabling, or disabling integrations.
16
16
17
17
### Using <PlatformIdentifiername="before-send" />
18
18
@@ -22,6 +22,32 @@ All Sentry SDKs support the <PlatformIdentifier name="before-send" /> callback m
22
22
23
23
Note also that breadcrumbs can be filtered, as discussed in [our Breadcrumbs documentation](/product/error-monitoring/breadcrumbs/).
24
24
25
+
### Using <PlatformIdentifiername="add-exception-filter" /> and <PlatformIdentifiername="add-exception-filter-for-type" />
26
+
27
+
The SDK also allows you to provide your own, custom exception filters. These have to inherit from <PlatformIdentifiername="IExceptionFilter" />
28
+
29
+
```csharp
30
+
publicclassMyExceptionFilter : IExceptionFilter
31
+
{
32
+
publicboolFilter(Exceptionex)
33
+
{
34
+
// TODO: Add your filtering logic
35
+
}
36
+
}
37
+
```
38
+
39
+
and can then be provided to the options during initialization.
Exception types provided via <PlatformIdentifiername="add-exception-filter-for-type" /> automatically get filtered and prevented from being set to Sentry.
To prevent certain transactions from being reported to Sentry, use the <PlatformIdentifiername="traces-sampler" /> or <PlatformIdentifiername="before-send-transaction" /> configuration option, which allows you to provide a function to evaluate the current transaction and drop it if it's not one you want.
0 commit comments