다음을 통해 공유


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>>

계기에 연결할 태그입니다.

반환

설명

계기는 비가산적 값을 기록하는 데 사용되는 계측기입니다.

계기 사용 예: 변경이 발생할 때 방 배경 노이즈 수준 값을 기록합니다.

적용 대상