Skip to content

Commit

Permalink
Change documentation url to docs.saucelabs.com (#239)
Browse files Browse the repository at this point in the history
Co-authored-by: Konrad Dysput <[email protected]>
  • Loading branch information
konraddysput and Konrad Dysput authored Jan 24, 2025
1 parent 089d754 commit 1d340fc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Runtime/Interfaces/IBacktraceMetrics.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public interface IBacktraceMetrics : IScopeAttributeProvider
/// and custom unique events can be added. Typical values to add are UserID, SteamID and other attributes that uniquely
/// identify an user. This list is persistent, meaning that events will not be removed upon Send() (like for summed events).
/// For non-standard unique events, server side configuration needs to be done.
/// Please refer to the <see href="https://support.backtrace.io">online documentation</see>.
/// Please refer to the <see href="https://docs.saucelabs.com/error-reporting/platform-integrations/unity/metrics/">online documentation</see>.
/// </summary>
//LinkedList<UniqueEvent> UniqueEvents { get; }

Expand Down Expand Up @@ -55,14 +55,14 @@ public interface IBacktraceMetrics : IScopeAttributeProvider
/// Adds a summed event to the outgoing queue.
/// </summary>
/// See <see cref="BacktraceClient.Metrics.Send(string, IDictionary)"/>.
/// <param name="metricGroupName">The name of the metric group to be incremented. This metric group must be configured on server side as well, please refer to the <see href = "https://support.backtrace.io" > online documentation</see>.</param>
/// <param name="metricGroupName">The name of the metric group to be incremented. This metric group must be configured on server side as well, please refer to the <see href = "https://docs.saucelabs.com/error-reporting/platform-integrations/unity/metrics/" > online documentation</see>.</param>
/// <returns>true if added successfully, otherwise false.</returns>
bool AddSummedEvent(string metricsGroupName);

/// <summary>
/// Adds a summed event to the outgoing queue.
/// </summary>
/// <param name="metricGroupName">The name of the metric group to be incremented. This metric group must be configured on server side as well, please refer to the <see href = "https://support.backtrace.io" > online documentation</see>.</param>
/// <param name="metricGroupName">The name of the metric group to be incremented. This metric group must be configured on server side as well, please refer to the <see href = "https://docs.saucelabs.com/error-reporting/platform-integrations/unity/metrics/" > online documentation</see>.</param>
/// <param name="attributes">Custom attributes to add. Will be merged with the default attributes, with attribute values provided here overriding any defaults.</param>
/// <returns>true if added successfully, otherwise false.</returns>
bool AddSummedEvent(string metricsGroupName, IDictionary<string, string> attributes);
Expand Down
2 changes: 1 addition & 1 deletion Runtime/Services/BacktraceApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ private void PrintLog(UnityWebRequest request)
Debug.LogWarning(string.Format("{0}{1}", string.Format("[Backtrace]::Reponse code: {0}, Response text: {1}",
request.responseCode,
request.error),
"\n Please check provided url to Backtrace service or learn more from our integration guide: https://support.backtrace.io/hc/en-us/articles/360040515991-Unity-Integration-Guide"));
"\n Please check provided url to Backtrace service or learn more from our integration guide: https://docs.saucelabs.com/error-reporting/platform-integrations/unity/setup/"));
}

//private string GetParametrizedQuery(string serverUrl, IDictionary<string, string> queryAttributes)
Expand Down

0 comments on commit 1d340fc

Please sign in to comment.