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
@@ -79,7 +79,9 @@ An example of some of the options that can be configured via `appsettings.json`:
79
79
"AttachStackTrace": true,
80
80
"Debug": true,
81
81
"DiagnosticLevel": "Error",
82
+
// ___PRODUCT_OPTION_START___ performance
82
83
"TracesSampleRate": 1.0
84
+
// ___PRODUCT_OPTION_END___ performance
83
85
},
84
86
```
85
87
@@ -107,11 +109,13 @@ ASP.NET Core will automatically read this environment variable and bind it to th
107
109
108
110
Finally, any settings that can be configured via `appsettings.json` or environment variables can also be configured via code. Some settings can only be configured in code, such as the `BeforeSend` callback:
Copy file name to clipboardExpand all lines: docs/platforms/dotnet/guides/aws-lambda/index.mdx
+3-1
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ All `ASP.NET Core` configurations are valid here. But one configuration in parti
35
35
`FlushOnCompletedRequest` ensures all events are flushed out. This is because the general ASP.NET Core hooks for when the process is exiting are not guaranteed to run in a serverless environment. This setting ensures that no event is lost if AWS recycles the process.
Copy file name to clipboardExpand all lines: docs/platforms/dotnet/guides/maui/index.mdx
+3-1
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ This package extends [Sentry.Extensions.Logging](/platforms/dotnet/guides/extens
45
45
In your `MauiProgram.cs` file, call `UseSentry` on your `MauiAppBuilder`, and include any options you would like to set. The `Dsn` is the only required parameter.
Copy file name to clipboardExpand all lines: docs/platforms/dotnet/guides/winui/index.mdx
+6-2
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ In addition to capturing errors, you can monitor interactions between multiple s
32
32
33
33
Select which Sentry features you'd like to install in addition to Error Monitoring to get the corresponding installation and configuration instructions below.
Copy file name to clipboardExpand all lines: docs/platforms/dotnet/guides/wpf/index.mdx
+3-1
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ The SDK should be initialized in the constructor of your application class (usua
30
30
The SDK automatically handles `AppDomain.UnhandledException`. On WPF, for production apps (when no debugger is attached), WPF catches exception to show the dialog to the user. You can also configure your app to capture those exceptions before the dialog shows up:
0 commit comments