Aracılığıyla paylaş


Meter.CreateHistogram Yöntem

Tanım

Aşırı Yüklemeler

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

İstatistiksel olarak anlamlı olabilecek rastgele değerleri raporlamak için kullanılabilecek bir Alet olan bir Histogram örneği oluşturur. Histogramlar, özetler ve yüzdebirlik gibi istatistiklere yöneliktir.

CreateHistogram<T>(String)
CreateHistogram<T>(String, String, String)

İstatistiksel olarak anlamlı olma olasılığı yüksek rastgele değerleri raporlamak için kullanılabilen bir araç olan histogram oluşturur. Histogramlar, özetler ve yüzdebirlik değerler gibi istatistiklere yöneliktir.

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

public System.Diagnostics.Metrics.Histogram<T> CreateHistogram<T> (string name, string? unit = default, string? description = default, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,object?>>? tags = default, System.Diagnostics.Metrics.InstrumentAdvice<T>? advice = default) where T : struct;
member this.CreateHistogram : string * string * string * seq<System.Collections.Generic.KeyValuePair<string, obj>> * System.Diagnostics.Metrics.InstrumentAdvice<'T (requires 'T : struct)> -> 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, Optional tags As IEnumerable(Of KeyValuePair(Of String, Object)) = Nothing, Optional advice As InstrumentAdvice(Of T) = Nothing) As Histogram(Of T)

Tür Parametreleri

T

Parametreler

name
String
unit
String
description
String

Döndürülenler

Şunlara uygulanır

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

Kaynak:
Meter.cs
Kaynak:
Meter.cs

İstatistiksel olarak anlamlı olabilecek rastgele değerleri raporlamak için kullanılabilecek bir Alet olan bir Histogram örneği oluşturur. Histogramlar, özetler ve yüzdebirlik gibi istatistiklere yöneliktir.

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ür Parametreleri

T

Ölçümün sayısal türü.

Parametreler

name
String

Araç adı. nullolamaz.

unit
String

İsteğe bağlı ölçüm araç birimi.

description
String

İsteğe bağlı bir araç açıklaması.

tags
IEnumerable<KeyValuePair<String,Object>>

Sayaçta eklenecek etiketler.

Döndürülenler

Yeni bir histogram.

Açıklamalar

Histogram için örnek kullanımlar: istek süresi ve yanıt yükünün boyutu.

Şunlara uygulanır

CreateHistogram<T>(String)

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

Tür Parametreleri

T

Parametreler

name
String

Döndürülenler

Şunlara uygulanır

CreateHistogram<T>(String, String, String)

Kaynak:
Meter.cs
Kaynak:
Meter.cs
Kaynak:
Meter.cs

İstatistiksel olarak anlamlı olma olasılığı yüksek rastgele değerleri raporlamak için kullanılabilen bir araç olan histogram oluşturur. Histogramlar, özetler ve yüzdebirlik değerler gibi istatistiklere yöneliktir.

public:
generic <typename T>
 where T : value class System::Diagnostics::Metrics::Histogram<T> ^ CreateHistogram(System::String ^ name, System::String ^ unit, System::String ^ description);
public System.Diagnostics.Metrics.Histogram<T> CreateHistogram<T> (string name, string? unit = default, string? description = default) where T : struct;
public System.Diagnostics.Metrics.Histogram<T> CreateHistogram<T> (string name, string? unit, string? description) 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)
Public Function CreateHistogram(Of T As Structure) (name As String, unit As String, description As String) As Histogram(Of T)

Tür Parametreleri

T

Ölçümün sayısal türü.

Parametreler

name
String

Araç adı. nullolamaz.

unit
String

İsteğe bağlı ölçüm ölçüm birimi.

description
String

İsteğe bağlı araç açıklaması.

Döndürülenler

Yeni bir histogram.

Açıklamalar

Histogram için örnek kullanımlar: İstek süresi ve yanıt yükünün boyutu.

Şunlara uygulanır