ApplicationLoadInfo Class

Load Information about a Service Fabric application.

Inheritance
ApplicationLoadInfo

Constructor

ApplicationLoadInfo(*, id: Optional[str] = None, minimum_nodes: Optional[int] = None, maximum_nodes: Optional[int] = None, node_count: Optional[int] = None, application_load_metric_information=None, **kwargs)

Parameters

id
str
Required

The identity of the application. This is an encoded representation of the application name. This is used in the REST APIs to identify the application resource. Starting in version 6.0, hierarchical names are delimited with the "~" character. For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" in 6.0+ and "myapp/app1" in previous versions.

minimum_nodes
<xref:long>
Required

The minimum number of nodes for this application. It is the number of nodes where Service Fabric will reserve Capacity in the cluster which equals to ReservedLoad * MinimumNodes for this Application instance. For applications that do not have application capacity defined this value will be zero.

maximum_nodes
<xref:long>
Required

The maximum number of nodes where this application can be instantiated. It is the number of nodes this application is allowed to span. For applications that do not have application capacity defined this value will be zero.

node_count
<xref:long>
Required

The number of nodes on which this application is instantiated. For applications that do not have application capacity defined this value will be zero.

application_load_metric_information
list[ApplicationLoadMetricInformation]
Required

List of application load metric information.