你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
TelemetryClientExtensions.GetMetricManager 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
MetricManager
获取指定范围内的此TelemetryClient
的 。
如果指定范围中不存在指标管理器,则会创建它。
public static Microsoft.ApplicationInsights.Metrics.MetricManager GetMetricManager (this Microsoft.ApplicationInsights.TelemetryClient telemetryClient, Microsoft.ApplicationInsights.MetricAggregationScope aggregationScope);
static member GetMetricManager : Microsoft.ApplicationInsights.TelemetryClient * Microsoft.ApplicationInsights.MetricAggregationScope -> Microsoft.ApplicationInsights.Metrics.MetricManager
<Extension()>
Public Function GetMetricManager (telemetryClient As TelemetryClient, aggregationScope As MetricAggregationScope) As MetricManager
参数
- telemetryClient
- TelemetryClient
要获取其指标管理器的遥测客户端。
- aggregationScope
- MetricAggregationScope
如果 MetricAggregationScope.TelemetryClient
指定 ,则返回特定于此客户端的指标管理器。 此类管理器仅聚合此客户端对象的指标。 使用此范围时,将针对不同的遥测客户端对象单独聚合 ID、命名空间和维度完全相同的两个指标。
如果 MetricAggregationScope.TelemetryConfiguration
指定 ,则返回此客户端遥测配置的指标管理器。 此类管理器聚合使用该遥测配置的所有客户端的指标。 使用此作用域时,将针对使用相同遥测配置的不同遥测客户端对象聚合具有完全相同 ID、命名空间和维度的两个指标。
返回
指定范围内的此遥测客户端的指标管理器。