你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

TelemetryClient.TrackTrace 方法

定义

重载

TrackTrace(TraceTelemetry)

发送跟踪消息以在诊断搜索中显示。 为每次调用 TrackTrace(TraceTelemetry)创建单独的TraceTelemetry实例。

TrackTrace(String)

发送跟踪消息以在诊断搜索中显示。

TrackTrace(String, SeverityLevel)

发送跟踪消息以在诊断搜索中显示。

TrackTrace(String, IDictionary<String,String>)

发送跟踪消息以在诊断搜索中显示。

TrackTrace(String, SeverityLevel, IDictionary<String,String>)

发送跟踪消息以在诊断搜索中显示。

TrackTrace(TraceTelemetry)

发送跟踪消息以在诊断搜索中显示。 为每次调用 TrackTrace(TraceTelemetry)创建单独的TraceTelemetry实例。

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

参数

telemetry
TraceTelemetry

具有可选属性的消息。

注解

了解详细信息

适用于

TrackTrace(String)

发送跟踪消息以在诊断搜索中显示。

public void TrackTrace (string message);
member this.TrackTrace : string -> unit
Public Sub TrackTrace (message As String)

参数

message
String

要显示的消息。

注解

了解详细信息

适用于

TrackTrace(String, SeverityLevel)

发送跟踪消息以在诊断搜索中显示。

public void TrackTrace (string message, Microsoft.ApplicationInsights.DataContracts.SeverityLevel severityLevel);
member this.TrackTrace : string * Microsoft.ApplicationInsights.DataContracts.SeverityLevel -> unit
Public Sub TrackTrace (message As String, severityLevel As SeverityLevel)

参数

message
String

要显示的消息。

severityLevel
SeverityLevel

跟踪严重性级别。

注解

了解详细信息

适用于

TrackTrace(String, IDictionary<String,String>)

发送跟踪消息以在诊断搜索中显示。

public void TrackTrace (string message, System.Collections.Generic.IDictionary<string,string> properties);
member this.TrackTrace : string * System.Collections.Generic.IDictionary<string, string> -> unit
Public Sub TrackTrace (message As String, properties As IDictionary(Of String, String))

参数

message
String

要显示的消息。

properties
IDictionary<String,String>

可用于搜索和分类事件的命名字符串值。

注解

了解详细信息

适用于

TrackTrace(String, SeverityLevel, IDictionary<String,String>)

发送跟踪消息以在诊断搜索中显示。

public void TrackTrace (string message, Microsoft.ApplicationInsights.DataContracts.SeverityLevel severityLevel, System.Collections.Generic.IDictionary<string,string> properties);
member this.TrackTrace : string * Microsoft.ApplicationInsights.DataContracts.SeverityLevel * System.Collections.Generic.IDictionary<string, string> -> unit
Public Sub TrackTrace (message As String, severityLevel As SeverityLevel, properties As IDictionary(Of String, String))

参数

message
String

要显示的消息。

severityLevel
SeverityLevel

跟踪严重性级别。

properties
IDictionary<String,String>

可用于搜索和分类事件的命名字符串值。

注解

了解详细信息

适用于