共用方式為


Meter.CreateGauge 方法

定義

多載

CreateGauge<T>(String)

建立量測計檢測,可用來記錄非累加值。

CreateGauge<T>(String, String, String, IEnumerable<KeyValuePair<String,Object>>)

建立計量量測計物件。

CreateGauge<T>(String)

建立量測計檢測,可用來記錄非累加值。

public:
generic <typename T>
 where T : value class System::Diagnostics::Metrics::Gauge<T> ^ CreateGauge(System::String ^ name);
public System.Diagnostics.Metrics.Gauge<T> CreateGauge<T> (string name) where T : struct;
member this.CreateGauge : string -> System.Diagnostics.Metrics.Gauge<'T (requires 'T : struct)> (requires 'T : struct)
Public Function CreateGauge(Of T As Structure) (name As String) As Gauge(Of T)

類型參數

T

參數

name
String

檢測名稱。 無法 null

傳回

備註

量測計是用來記錄非累加值的檢測。

量測計使用的範例:在發生變更時記錄會議室背景雜訊等級值。

適用於

CreateGauge<T>(String, String, String, IEnumerable<KeyValuePair<String,Object>>)

建立計量量測計物件。

public System.Diagnostics.Metrics.Gauge<T> CreateGauge<T> (string name, string? unit = default, string? description = default, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,object?>>? tags = default) where T : struct;
member this.CreateGauge : string * string * string * seq<System.Collections.Generic.KeyValuePair<string, obj>> -> System.Diagnostics.Metrics.Gauge<'T (requires 'T : struct)> (requires 'T : struct)
Public Function CreateGauge(Of T As Structure) (name As String, Optional unit As String = Nothing, Optional description As String = Nothing, Optional tags As IEnumerable(Of KeyValuePair(Of String, Object)) = Nothing) As Gauge(Of T)

類型參數

T

參數

name
String

檢測名稱。 無法 null

unit
String

選擇性檢測單位的度量單位。

description
String

選擇性的檢測描述。

tags
IEnumerable<KeyValuePair<String,Object>>

要附加至量測計的標記。

傳回

備註

量測計是用來記錄非累加值的檢測。

量測計使用的範例:在發生變更時記錄會議室背景雜訊等級值。

適用於