你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

ServiceLoadMetric 构造函数

定义

重载

ServiceLoadMetric()

初始化 ServiceLoadMetric 类的新实例。

ServiceLoadMetric(String, String, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

初始化 ServiceLoadMetric 类的新实例。

ServiceLoadMetric()

初始化 ServiceLoadMetric 类的新实例。

public ServiceLoadMetric ();
Public Sub New ()

适用于

ServiceLoadMetric(String, String, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

初始化 ServiceLoadMetric 类的新实例。

public ServiceLoadMetric (string name, string weight = default, int? primaryDefaultLoad = default, int? secondaryDefaultLoad = default, int? defaultLoad = default);
new Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ServiceLoadMetric : string * string * Nullable<int> * Nullable<int> * Nullable<int> -> Microsoft.Azure.Management.ServiceFabricManagedClusters.Models.ServiceLoadMetric
Public Sub New (name As String, Optional weight As String = Nothing, Optional primaryDefaultLoad As Nullable(Of Integer) = Nothing, Optional secondaryDefaultLoad As Nullable(Of Integer) = Nothing, Optional defaultLoad As Nullable(Of Integer) = Nothing)

参数

name
String

指标的名称。 如果服务选择在运行时报告负载,则负载指标名称应与 Name 中指定的名称完全匹配。 请注意,度量值名称区分大小写。

weight
String

服务负载度量值的相对权重(相对于为此服务配置的其他度量值),以数字形式提供。 可能的值包括:“Zero”、“Low”、“Medium”、“High”

primaryDefaultLoad
Nullable<Int32>

仅用于有状态服务。 当此服务为主副本时为此度量值创建的默认负载量,以数字形式提供。

secondaryDefaultLoad
Nullable<Int32>

仅用于有状态服务。 当此服务为辅助副本时为此度量值创建的默认负载量,以数字形式提供。

defaultLoad
Nullable<Int32>

仅用于无状态服务。 此服务为此指标创建的默认负载量(以数字表示)。

适用于