Meter.CreateGauge 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
CreateGauge<T>(String) |
Cria um instrumento Gauge, que pode ser usado para registrar valores não aditivos. |
CreateGauge<T>(String, String, String, IEnumerable<KeyValuePair<String,Object>>) |
Crie um objeto Metrics Gauge. |
CreateGauge<T>(String)
Cria um instrumento Gauge, que pode ser usado para registrar valores não aditivos.
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)
Parâmetros de tipo
- T
Parâmetros
- name
- String
O nome do instrumento. não pode ser null
.
Retornos
Comentários
Medidor é um instrumento usado para registrar valores não aditivos.
Exemplo usa para Medidor: registre o valor do nível de ruído de plano de fundo da sala quando ocorrerem alterações.
Aplica-se a
CreateGauge<T>(String, String, String, IEnumerable<KeyValuePair<String,Object>>)
Crie um objeto Metrics Gauge.
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)
Parâmetros de tipo
- T
Parâmetros
- name
- String
O nome do instrumento. não pode ser null
.
- unit
- String
Unidade de instrumento opcional de medidas.
- description
- String
Descrição do instrumento opcional.
- tags
- IEnumerable<KeyValuePair<String,Object>>
marcas a serem anexadas ao Medidor.
Retornos
Comentários
Medidor é um instrumento usado para registrar valores não aditivos.
Exemplo usa para Medidor: registre o valor do nível de ruído de plano de fundo da sala quando ocorrerem alterações.