Skip to content

Commit 1013f16

Browse files
authored
feat(.NET): Added Exception Filters (#10846)
1 parent bab73d3 commit 1013f16

File tree

1 file changed

+27
-1
lines changed

1 file changed

+27
-1
lines changed

docs/platforms/dotnet/common/configuration/filtering.mdx

+27-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ We also offer [Inbound Filters](/concepts/data-management/filtering/) to filter
1212

1313
## Filtering Error Events
1414

15-
Configure your SDK to filter error events by using the <PlatformIdentifier name="before-send" /> callback method and configuring, enabling, or disabling integrations.
15+
To prevent certain errors from being reported to Sentry, use the <PlatformIdentifier name="before-send" /> or <PlatformIdentifier name="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.
1616

1717
### Using <PlatformIdentifier name="before-send" />
1818

@@ -22,6 +22,32 @@ All Sentry SDKs support the <PlatformIdentifier name="before-send" /> callback m
2222

2323
Note also that breadcrumbs can be filtered, as discussed in [our Breadcrumbs documentation](/product/error-monitoring/breadcrumbs/).
2424

25+
### Using <PlatformIdentifier name="add-exception-filter" /> and <PlatformIdentifier name="add-exception-filter-for-type" />
26+
27+
The SDK also allows you to provide your own, custom exception filters. These have to inherit from <PlatformIdentifier name="IExceptionFilter" />
28+
29+
```csharp
30+
public class MyExceptionFilter : IExceptionFilter
31+
{
32+
public bool Filter(Exception ex)
33+
{
34+
// TODO: Add your filtering logic
35+
}
36+
}
37+
```
38+
39+
and can then be provided to the options during initialization.
40+
41+
```csharp
42+
options.AddExceptionFilter(new MyExceptionFilter());
43+
```
44+
45+
Exception types provided via <PlatformIdentifier name="add-exception-filter-for-type" /> automatically get filtered and prevented from being set to Sentry.
46+
47+
```csharp
48+
options.AddExceptionFilterForType<MyCustomException>();
49+
```
50+
2551
## Filtering Transaction Events
2652

2753
To prevent certain transactions from being reported to Sentry, use the <PlatformIdentifier name="traces-sampler" /> or <PlatformIdentifier name="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

Comments
 (0)