ITelemetryProducer.TrackMetric 方法

定义

重载

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

将指标值发送到已注册的遥测使用者。

TrackMetric(String, TimeSpan, IDictionary<String,String>)

将指标值发送到已注册的遥测使用者。

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

Source:
ITelemetryProducer.cs

将指标值发送到已注册的遥测使用者。

public void TrackMetric (string name, double value, System.Collections.Generic.IDictionary<string,string> properties = default);
abstract member TrackMetric : string * double * System.Collections.Generic.IDictionary<string, string> -> unit
Public Sub TrackMetric (name As String, value As Double, Optional properties As IDictionary(Of String, String) = Nothing)

参数

name
String

指标名称。

value
Double

指标值。

properties
IDictionary<String,String>

可用于对指标进行分类和筛选的命名字符串值。

适用于

TrackMetric(String, TimeSpan, IDictionary<String,String>)

Source:
ITelemetryProducer.cs

将指标值发送到已注册的遥测使用者。

public void TrackMetric (string name, TimeSpan value, System.Collections.Generic.IDictionary<string,string> properties = default);
abstract member TrackMetric : string * TimeSpan * System.Collections.Generic.IDictionary<string, string> -> unit
Public Sub TrackMetric (name As String, value As TimeSpan, Optional properties As IDictionary(Of String, String) = Nothing)

参数

name
String

指标名称。

value
TimeSpan

指标值。

properties
IDictionary<String,String>

可用于对指标进行分类和筛选的命名字符串值。

适用于