Meter.CreateGauge 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
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>>
要附加到仪表的标记。
返回
注解
仪表是用于记录非累加值的检测器。
仪表的示例用法:在发生更改时记录房间背景噪音级别值。