Skip to content

Commit ce1683c

Browse files
authored
Version 3.2.6 - Sampling improvements (#55)
* 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
1 parent 212763f commit ce1683c

9 files changed

+53
-15
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Backtrace Unity Release Notes
22

3+
## Version 3.2.6
4+
- `BacktraceClient` will apply sampling only to errors lacking exception information.
5+
- Fixed annotations nullable value.
6+
- Renamed `BacktraceUnhandledException` classifier to `error`.
7+
- Fixed nullable environment annotation value.
8+
39
## Version 3.2.5
410
- Added `BacktraceClient` Initialization method that allows developer to intialize Backtrace integration without adding game object to game scene.
511
- Fixed invalid `meta` file for iOS integration for Unity 2019.2.13f1.

Editor/BacktraceConfigurationLabels.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ internal static class BacktraceConfigurationLabels
88
internal static string LABEL_HANDLE_UNHANDLED_EXCEPTION = "Handle unhandled exceptions";
99

1010
internal static string LABEL_DESTROY_CLIENT_ON_SCENE_LOAD = "Destroy client on new scene load (false - Backtrace managed)";
11-
internal static string LABEL_SAMPLING = "Sampling skip fraction";
11+
internal static string LABEL_SAMPLING = "Log random sampling rate";
1212
internal static string LABEL_HANDLE_ANR = "Handle ANR (Application not responding)";
1313
internal static string CAPTURE_NATIVE_CRASHES = "Capture native crashes";
1414
internal static string LABEL_REPORT_FILTER = "Filter reports";

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ The following is a reference guide to the Backtrace Client fields:
139139
- Send unhandled native game crashes on startup: Try to find game native crashes and send them on Game startup.
140140
- Handle unhandled exceptions: Toggle this on or off to set the library to handle unhandled exceptions that are not captured by try-catch blocks.
141141
- 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.
143143
- Game Object Depth Limit: Allows developer to filter number of game object childrens in Backtrace report.
144144
- Collect last n game logs: Collect last n number of logs generated by game.
145145
- Enabled performance statistics: Allows `BacktraceClient` to measure execution time and include performance information as report attributes.

Runtime/BacktraceClient.cs

+35-8
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class BacktraceClient : MonoBehaviour, IBacktraceClient
2020
{
2121
public BacktraceConfiguration Configuration;
2222

23-
public const string VERSION = "3.2.5";
23+
public const string VERSION = "3.2.6";
2424
public bool Enabled { get; private set; }
2525

2626
/// <summary>
@@ -682,10 +682,37 @@ internal void HandleUnityMessage(string message, string stackTrace, LogType type
682682
}
683683
var unityMessage = new BacktraceUnityMessage(message, stackTrace, type);
684684
_backtraceLogManager.Enqueue(unityMessage);
685-
if (Configuration.HandleUnhandledExceptions && unityMessage.IsUnhandledException() && !SamplingShouldSkip())
685+
if (Configuration.HandleUnhandledExceptions && unityMessage.IsUnhandledException())
686686
{
687-
var exception = new BacktraceUnhandledException(unityMessage.Message, unityMessage.StackTrace);
688-
SendUnhandledException(exception);
687+
BacktraceUnhandledException exception = null;
688+
var invokeSkipApi = true;
689+
690+
// detect sampling flow
691+
// we should apply sampling only to unhandled exceptions that are type LogType == Error
692+
// log type error won't provide full exception information
693+
if (type == LogType.Error && SamplingShouldSkip())
694+
{
695+
if (SkipReport != null || Configuration.ReportFilterType.HasFlag(ReportFilterType.UnhandledException))
696+
{
697+
exception = new BacktraceUnhandledException(unityMessage.Message, unityMessage.StackTrace);
698+
if (ShouldSkipReport(ReportFilterType.UnhandledException, exception, string.Empty))
699+
{
700+
return;
701+
}
702+
invokeSkipApi = false;
703+
}
704+
else
705+
{
706+
return;
707+
}
708+
}
709+
710+
if (exception == null)
711+
{
712+
exception = new BacktraceUnhandledException(unityMessage.Message, unityMessage.StackTrace);
713+
}
714+
715+
SendUnhandledException(exception, invokeSkipApi);
689716
}
690717
}
691718

@@ -708,19 +735,19 @@ private bool SamplingShouldSkip()
708735
#endif
709736
}
710737

711-
private void SendUnhandledException(BacktraceUnhandledException exception)
738+
private void SendUnhandledException(BacktraceUnhandledException exception, bool invokeSkipApi = true)
712739
{
713740
if (OnUnhandledApplicationException != null)
714741
{
715742
OnUnhandledApplicationException.Invoke(exception);
716743
}
717-
if (ShouldSendReport(exception, null, null))
744+
if (ShouldSendReport(exception, null, null, invokeSkipApi))
718745
{
719746
SendReport(new BacktraceReport(exception));
720747
}
721748
}
722749

723-
private bool ShouldSendReport(Exception exception, List<string> attachmentPaths, Dictionary<string, string> attributes)
750+
private bool ShouldSendReport(Exception exception, List<string> attachmentPaths, Dictionary<string, string> attributes, bool invokeSkipApi = true)
724751
{
725752
if (!Enabled)
726753
{
@@ -736,7 +763,7 @@ private bool ShouldSendReport(Exception exception, List<string> attachmentPaths,
736763
}
737764

738765

739-
if (ShouldSkipReport(filterType, exception, string.Empty))
766+
if (invokeSkipApi && ShouldSkipReport(filterType, exception, string.Empty))
740767
{
741768
return false;
742769
}

Runtime/Model/BacktraceConfiguration.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public class BacktraceConfiguration : ScriptableObject
4949
/// <summary>
5050
/// Sampling configuration - fractional sampling allows to drop some % of unhandled exception.
5151
/// </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" +
5353
"* 1 - means 100% of unhandled exception reports will be reported by library,\n" +
5454
"* 0.1 - means 10% of unhandled exception reports will be reported by library,\n" +
5555
"* 0 - means library is going to drop all unhandled exception.")]

Runtime/Model/BacktraceUnhandledException.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ private BacktraceStackFrame SetDefaultStackTraceInformation(string frameString)
365365
/// </summary>
366366
private void TrySetClassifier()
367367
{
368-
Classifier = "BacktraceUnhandledException";
368+
Classifier = "error";
369369
if (string.IsNullOrEmpty(_message))
370370
{
371371
return;

Runtime/Model/JsonData/Annotations.cs

+6-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,12 @@ private static Dictionary<string, string> SetEnvironmentVariables()
4040
var environmentVariables = new Dictionary<string, string>();
4141
foreach (DictionaryEntry variable in Environment.GetEnvironmentVariables())
4242
{
43-
environmentVariables.Add(variable.Key.ToString(), Regex.Escape(variable.Value.ToString() ?? "NULL"));
43+
if (variable.Key == null)
44+
{
45+
continue;
46+
}
47+
var value = variable.Value == null ? "NULL" : variable.Value.ToString();
48+
environmentVariables.Add(variable.Key.ToString(), value);
4449
}
4550
return environmentVariables;
4651
}

Tests/Runtime/BacktraceStackTraceTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ public void TestClassifierSetter_DontSetClassifierIfClassifierIsNotAvailable_Sho
396396
// should guess classifier based on first stack frame
397397
string message = string.Empty;
398398
var exception = new BacktraceUnhandledException(message, stackTrace);
399-
Assert.AreEqual("BacktraceUnhandledException", exception.Classifier);
399+
Assert.AreEqual("error", exception.Classifier);
400400
}
401401

402402

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "io.backtrace.unity",
33
"displayName": "Backtrace",
4-
"version": "3.2.5",
4+
"version": "3.2.6",
55
"unity": "2017.1",
66
"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.",
77
"keywords": [

0 commit comments

Comments
 (0)