Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

TelemetryClient.TrackEvent Method

Definition

Namespace:
Microsoft.VisualStudio.ApplicationInsights
Assembly:
Microsoft.VisualStudio.Telemetry.dll
Package:
Microsoft.VisualStudio.Telemetry v17.14.18

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Overloads

Name Description
TrackEvent(EventTelemetry)

Send an EventTelemetry for display in Diagnostic Search and aggregation in Metrics Explorer.

TrackEvent(String, IDictionary<String,String>, IDictionary<String,Double>)

Send an EventTelemetry for display in Diagnostic Search and aggregation in Metrics Explorer.

TrackEvent(EventTelemetry)

Send an EventTelemetry for display in Diagnostic Search and aggregation in Metrics Explorer.

public:
 void TrackEvent(Microsoft::VisualStudio::ApplicationInsights::DataContracts::EventTelemetry ^ telemetry);
public void TrackEvent(Microsoft.VisualStudio.ApplicationInsights.DataContracts.EventTelemetry telemetry);
member this.TrackEvent : Microsoft.VisualStudio.ApplicationInsights.DataContracts.EventTelemetry -> unit
Public Sub TrackEvent (telemetry As EventTelemetry)

Parameters

telemetry
EventTelemetry

An event log item.

Applies to

TrackEvent(String, IDictionary<String,String>, IDictionary<String,Double>)

Send an EventTelemetry for display in Diagnostic Search and aggregation in Metrics Explorer.

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

Parameters

eventName
String

A name for the event.

properties
IDictionary<String,String>

Named string values you can use to search and classify events.

metrics
IDictionary<String,Double>

Measurements associated with this event.

Applies to