Meter.CreateUpDownCounter Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
CreateUpDownCounter<T>(String, String, String) |
Crie um objeto UpDownCounter de métricas. |
CreateUpDownCounter<T>(String, String, String, IEnumerable<KeyValuePair<String,Object>>) |
Crie um objeto UpDownCounter de métricas. |
CreateUpDownCounter<T>(String, String, String)
- Origem:
- Meter.cs
- Origem:
- Meter.cs
- Origem:
- Meter.cs
Crie um objeto UpDownCounter de métricas.
public System.Diagnostics.Metrics.UpDownCounter<T> CreateUpDownCounter<T> (string name, string? unit = default, string? description = default) where T : struct;
member this.CreateUpDownCounter : string * string * string -> System.Diagnostics.Metrics.UpDownCounter<'T (requires 'T : struct)> (requires 'T : struct)
Public Function CreateUpDownCounter(Of T As Structure) (name As String, Optional unit As String = Nothing, Optional description As String = Nothing) As UpDownCounter(Of T)
Parâmetros de tipo
- T
O tipo numérico da medida.
Parâmetros
- name
- String
O nome do instrumento. Não pode ser null
.
- unit
- String
Unidade de medidas de instrumento opcional.
- description
- String
Descrição do instrumento opcional.
Retornos
Um novo contador para cima.
Comentários
UpDownCounter é um Instrument que dá suporte ao relatório de valores de métrica positivos ou negativos. Usos de exemplo para UpDownCounter: relatar a alteração em solicitações ativas ou tamanho da fila.
Aplica-se a
CreateUpDownCounter<T>(String, String, String, IEnumerable<KeyValuePair<String,Object>>)
- Origem:
- Meter.cs
- Origem:
- Meter.cs
Crie um objeto UpDownCounter de métricas.
public:
generic <typename T>
where T : value class System::Diagnostics::Metrics::UpDownCounter<T> ^ CreateUpDownCounter(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.UpDownCounter<T> CreateUpDownCounter<T> (string name, string? unit, string? description, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,object?>>? tags) where T : struct;
public System.Diagnostics.Metrics.UpDownCounter<T> CreateUpDownCounter<T> (string name, string? unit, string? description, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,object?>> tags) where T : struct;
member this.CreateUpDownCounter : string * string * string * seq<System.Collections.Generic.KeyValuePair<string, obj>> -> System.Diagnostics.Metrics.UpDownCounter<'T (requires 'T : struct)> (requires 'T : struct)
Public Function CreateUpDownCounter(Of T As Structure) (name As String, unit As String, description As String, tags As IEnumerable(Of KeyValuePair(Of String, Object))) As UpDownCounter(Of T)
Parâmetros de tipo
- T
O tipo numérico da medida.
Parâmetros
- name
- String
O nome do instrumento. Não pode ser null
.
- unit
- String
Unidade de medidas de instrumento opcional.
- description
- String
Descrição do instrumento opcional.
- tags
- IEnumerable<KeyValuePair<String,Object>>
marcas a serem anexadas ao contador.
Retornos
Um novo contador para cima.
Comentários
UpDownCounter é um Instrument que dá suporte ao relatório de valores de métrica positivos ou negativos. Usos de exemplo para UpDownCounter: relatar a alteração em solicitações ativas ou tamanho da fila.