TelemetryClient.TrackException Method

Definition

Overloads

TrackException(Exception, IDictionary<String,String>, IDictionary<String,Double>)

Send an ExceptionTelemetry for display in Diagnostic Search.

TrackException(ExceptionTelemetry)

Send an ExceptionTelemetry for display in Diagnostic Search. Create a separate ExceptionTelemetry instance for each call to TrackException(ExceptionTelemetry).

TrackException(Exception, IDictionary<String,String>, IDictionary<String,Double>)

Send an ExceptionTelemetry for display in Diagnostic Search.

public void TrackException (Exception exception, System.Collections.Generic.IDictionary<string,string> properties = default, System.Collections.Generic.IDictionary<string,double> metrics = default);
member this.TrackException : Exception * System.Collections.Generic.IDictionary<string, string> * System.Collections.Generic.IDictionary<string, double> -> unit
Public Sub TrackException (exception As Exception, Optional properties As IDictionary(Of String, String) = Nothing, Optional metrics As IDictionary(Of String, Double) = Nothing)

Parameters

exception
Exception

The exception to log.

properties
IDictionary<String,String>

Named string values you can use to classify and search for this exception.

metrics
IDictionary<String,Double>

Additional values associated with this exception.

Remarks

Learn more

Applies to

TrackException(ExceptionTelemetry)

Send an ExceptionTelemetry for display in Diagnostic Search. Create a separate ExceptionTelemetry instance for each call to TrackException(ExceptionTelemetry).

public void TrackException (Microsoft.ApplicationInsights.DataContracts.ExceptionTelemetry telemetry);
member this.TrackException : Microsoft.ApplicationInsights.DataContracts.ExceptionTelemetry -> unit
Public Sub TrackException (telemetry As ExceptionTelemetry)

Parameters

telemetry
ExceptionTelemetry

Remarks

Learn more

Applies to