Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change documentation url to docs.saucelabs.com #239

Merged
merged 1 commit into from
Jan 24, 2025
Merged
Show file tree
Hide file tree
Changes from all 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
6 changes: 3 additions & 3 deletions Runtime/Interfaces/IBacktraceMetrics.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,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 @@ -49,14 +49,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
Loading