Share via


ServiceLoadMetricDescription Constructors

Definition

Overloads

ServiceLoadMetricDescription()

Initializes a new instance of the ServiceLoadMetricDescription class.

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

Initializes a new instance of the ServiceLoadMetricDescription class.

ServiceLoadMetricDescription()

Initializes a new instance of the ServiceLoadMetricDescription class.

public ServiceLoadMetricDescription ();
Public Sub New ()

Applies to

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

Initializes a new instance of the ServiceLoadMetricDescription class.

public ServiceLoadMetricDescription (string name, string weight = default, int? primaryDefaultLoad = default, int? secondaryDefaultLoad = default, int? defaultLoad = default);
new Microsoft.Azure.Management.ServiceFabric.Models.ServiceLoadMetricDescription : string * string * Nullable<int> * Nullable<int> * Nullable<int> -> Microsoft.Azure.Management.ServiceFabric.Models.ServiceLoadMetricDescription
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)

Parameters

name
String

The name of the metric. If the service chooses to report load during runtime, the load metric name should match the name that is specified in Name exactly. Note that metric names are case sensitive.

weight
String

The service load metric relative weight, compared to other metrics configured for this service, as a number. Possible values include: 'Zero', 'Low', 'Medium', 'High'

primaryDefaultLoad
Nullable<Int32>

Used only for Stateful services. The default amount of load, as a number, that this service creates for this metric when it is a Primary replica.

secondaryDefaultLoad
Nullable<Int32>

Used only for Stateful services. The default amount of load, as a number, that this service creates for this metric when it is a Secondary replica.

defaultLoad
Nullable<Int32>

Used only for Stateless services. The default amount of load, as a number, that this service creates for this metric.

Applies to