Meter.CreateHistogram 메서드

정의

오버로드

CreateHistogram<T>(String, String, String)

통계적으로 의미 있는 임의의 값을 보고하는 데 사용할 수 있는 계측인 히스토그램을 만듭니다. 히스토그램, 요약 및 백분위수와 같은 통계를 위한 것입니다.

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

통계적으로 의미 있는 임의의 값을 보고하는 데 사용할 수 있는 계측인 히스토그램 instance 만듭니다. 히스토그램, 요약 및 백분위수와 같은 통계를 위한 것입니다.

CreateHistogram<T>(String, String, String)

Source:
Meter.cs
Source:
Meter.cs
Source:
Meter.cs

통계적으로 의미 있는 임의의 값을 보고하는 데 사용할 수 있는 계측인 히스토그램을 만듭니다. 히스토그램, 요약 및 백분위수와 같은 통계를 위한 것입니다.

public System.Diagnostics.Metrics.Histogram<T> CreateHistogram<T> (string name, string? unit = default, string? description = default) where T : struct;
member this.CreateHistogram : string * string * string -> System.Diagnostics.Metrics.Histogram<'T (requires 'T : struct)> (requires 'T : struct)
Public Function CreateHistogram(Of T As Structure) (name As String, Optional unit As String = Nothing, Optional description As String = Nothing) As Histogram(Of T)

형식 매개 변수

T

측정값의 숫자 형식입니다.

매개 변수

name
String

계측 이름입니다. null일 수 없습니다.

unit
String

측정의 선택적 계측 단위입니다.

description
String

선택적 계측 설명입니다.

반환

새 히스토그램입니다.

설명

히스토그램에 대한 예제 사용: 요청 기간 및 응답 페이로드의 크기입니다.

적용 대상

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

Source:
Meter.cs
Source:
Meter.cs

통계적으로 의미 있는 임의의 값을 보고하는 데 사용할 수 있는 계측인 히스토그램 instance 만듭니다. 히스토그램, 요약 및 백분위수와 같은 통계를 위한 것입니다.

public:
generic <typename T>
 where T : value class System::Diagnostics::Metrics::Histogram<T> ^ CreateHistogram(System::String ^ name, System::String ^ unit, System::String ^ description, System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^>> ^ tags);
public System.Diagnostics.Metrics.Histogram<T> CreateHistogram<T> (string name, string? unit, string? description, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,object?>> tags) where T : struct;
member this.CreateHistogram : string * string * string * seq<System.Collections.Generic.KeyValuePair<string, obj>> -> System.Diagnostics.Metrics.Histogram<'T (requires 'T : struct)> (requires 'T : struct)
Public Function CreateHistogram(Of T As Structure) (name As String, unit As String, description As String, tags As IEnumerable(Of KeyValuePair(Of String, Object))) As Histogram(Of T)

형식 매개 변수

T

측정값의 숫자 형식입니다.

매개 변수

name
String

계측 이름입니다. null일 수 없습니다.

unit
String

측정의 선택적 계측 단위입니다.

description
String

선택적 계측 설명입니다.

tags
IEnumerable<KeyValuePair<String,Object>>

카운터에 연결할 태그입니다.

반환

새 히스토그램입니다.

설명

히스토그램에 대한 예제 사용: 요청 기간 및 응답 페이로드의 크기입니다.

적용 대상