TelemetryClient.TrackEvent Method
Definition
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
TrackEvent(EventTelemetry) |
Send an EventTelemetry for display in Diagnostic Search and in the Analytics Portal. Create a separate EventTelemetry instance for each call to TrackEvent(EventTelemetry). |
TrackEvent(String, IDictionary<String,String>, IDictionary<String,Double>) |
Send an EventTelemetry for display in Diagnostic Search and in the Analytics Portal. |
TrackEvent(EventTelemetry)
Send an EventTelemetry for display in Diagnostic Search and in the Analytics Portal. Create a separate EventTelemetry instance for each call to TrackEvent(EventTelemetry).
public void TrackEvent (Microsoft.ApplicationInsights.DataContracts.EventTelemetry telemetry);
member this.TrackEvent : Microsoft.ApplicationInsights.DataContracts.EventTelemetry -> unit
Public Sub TrackEvent (telemetry As EventTelemetry)
Parameters
- telemetry
- EventTelemetry
An event log item.
Remarks
Applies to
TrackEvent(String, IDictionary<String,String>, IDictionary<String,Double>)
Send an EventTelemetry for display in Diagnostic Search and in the Analytics Portal.
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.
Remarks
Applies to
Azure SDK for .NET