Interface IDiagnostics
Object used to send diagnostic events to the backend.
Namespace: Unity.Services.Core.Telemetry.Internal
Syntax
public interface IDiagnostics
Methods
SendDiagnostic(String, String, IDictionary<String, String>)
Send a diagnostic event to the telemetry service to report unexpected behaviour.
Declaration
void SendDiagnostic(string name, string message, IDictionary<string, string> tags = null)
Parameters
Type | Name | Description |
---|---|---|
String | name | Name of the event. |
String | message | An error message describing what error occured. |
IDictionary<String, String> | tags | Event tags. |