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
* Apply sampling only to errors type error - not exception
* Don't add the same key twice
* Correct classifier name -UnhandledException
* Changelog update + unhandled classifier name update
* Labels update
* classifier rename
Copy file name to clipboardexpand all lines: README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -139,7 +139,7 @@ The following is a reference guide to the Backtrace Client fields:
139
139
- Send unhandled native game crashes on startup: Try to find game native crashes and send them on Game startup.
140
140
- Handle unhandled exceptions: Toggle this on or off to set the library to handle unhandled exceptions that are not captured by try-catch blocks.
141
141
- Symbols upload token - If you want to upload Unity debug symbols for Android NDK Native Crash debugging, enter your Backtrace Symbol upload token here. This option is available only in Android build.
142
-
-Sampling skip fraction - Enables a new random sampling mechanism for unhandled exceptions - **by default** sampling is equal to **0.01** - which means only **1%** of randomply sampling **reports will be send** to Backtrace. If you would like to send all unhandled exceptions to Backtrace - please replace 0.01 value with 1.
142
+
-Log random sampling rate - Enables a new random sampling mechanism for error message - **by default** sampling is equal to **0.01** - which means only **1%** of randomply sampling **reports will be send** to Backtrace. If you would like to send all error messages to Backtrace - please replace 0.01 value with 1.
143
143
- Game Object Depth Limit: Allows developer to filter number of game object childrens in Backtrace report.
144
144
- Collect last n game logs: Collect last n number of logs generated by game.
145
145
- Enabled performance statistics: Allows `BacktraceClient` to measure execution time and include performance information as report attributes.
Copy file name to clipboardexpand all lines: Runtime/Model/BacktraceConfiguration.cs
+1-1
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ public class BacktraceConfiguration : ScriptableObject
49
49
/// <summary>
50
50
/// Sampling configuration - fractional sampling allows to drop some % of unhandled exception.
51
51
/// </summary>
52
-
[Tooltip("Sampling skip fraction - Enables a random sampling mechanism for unhandled exceptions - by default sampling is equal to 0.01 - which means only 1% of randomply sampling reports will be send to Backtrace. \n"+
52
+
[Tooltip("Log random sampling rate - Enables a random sampling mechanism for unhandled exceptions - by default sampling is equal to 0.01 - which means only 1% of randomply sampling reports will be send to Backtrace. \n"+
53
53
"* 1 - means 100% of unhandled exception reports will be reported by library,\n"+
54
54
"* 0.1 - means 10% of unhandled exception reports will be reported by library,\n"+
55
55
"* 0 - means library is going to drop all unhandled exception.")]
Copy file name to clipboardexpand all lines: package.json
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
{
2
2
"name": "io.backtrace.unity",
3
3
"displayName": "Backtrace",
4
-
"version": "3.2.5",
4
+
"version": "3.2.6",
5
5
"unity": "2017.1",
6
6
"description": "Backtrace's integration with Unity games allows customers to capture and report handled and unhandled Unity exceptions to their Backtrace instance, instantly offering the ability to prioritize and debug software errors.",
0 commit comments