Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

- SentryOptions.IsEnvironmentUser now defaults to false on MAUI. The means the User.Name will no longer be set, by default, to the name of the device ([#4606](https://github.com/getsentry/sentry-dotnet/pull/4606))
- Remove unnecessary files from SentryCocoaFramework before packing ([#4602](https://github.com/getsentry/sentry-dotnet/pull/4602))
- Backpressure handling is now enabled by default, meaning that the SDK will monitor system health and reduce the sampling rate of events and transactions when the system is under load. When the system is determined to be healthy again, the sampling rates are returned to their original levels. ([#4615](https://github.com/getsentry/sentry-dotnet/pull/4615))

## 6.0.0-preview.1

Expand Down
5 changes: 4 additions & 1 deletion src/Sentry/SentryOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,10 @@ public bool IsGlobalModeEnabled
/// Enables or disables automatic backpressure handling. When enabled, the SDK will monitor system health and
/// reduce the sampling rate of events and transactions when the system is under load.
/// </summary>
public bool EnableBackpressureHandling { get; set; } = false;
/// <remarks>
/// Defaults to true / enabled.
/// </remarks>
public bool EnableBackpressureHandling { get; set; } = true;

/// <summary>
/// This holds a reference to the current transport, when one is active.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
https://[email protected]:65535/2147483647
]
},
{
Message: Starting BackpressureMonitor.
},
{
Message: Registering integration: '{0}'.,
Args: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
https://[email protected]:65535/2147483647
]
},
{
Message: Starting BackpressureMonitor.
},
{
Message: Registering integration: '{0}'.,
Args: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
https://[email protected]:65535/2147483647
]
},
{
Message: Starting BackpressureMonitor.
},
{
Message: Registering integration: '{0}'.,
Args: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
https://[email protected]:65535/2147483647
]
},
{
Message: Starting BackpressureMonitor.
},
{
Message: Registering integration: '{0}'.,
Args: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
https://[email protected]:65535/2147483647
]
},
{
Message: Starting BackpressureMonitor.
},
{
Message: Registering integration: '{0}'.,
Args: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
https://[email protected]:65535/2147483647
]
},
{
Message: Starting BackpressureMonitor.
},
{
Message: Registering integration: '{0}'.,
Args: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
https://[email protected]:65535/2147483647
]
},
{
Message: Starting BackpressureMonitor.
},
{
Message: Registering integration: '{0}'.,
Args: [
Expand Down
Loading