Get-ServiceFabricApplicationLoadInformation
Gets application capacity parameters and load information for a Service Fabric application.
Syntax
Default (Default)
Get-ServiceFabricApplicationLoadInformation
[-ApplicationName] <String>
[-TimeoutSec <Int32>]
[<CommonParameters>]
Description
The Get-ServiceFabricApplicationLoadInformation cmdlet gets application capacity parameters and load information for a Service Fabric application.
The output of Get-ServiceFabricApplicationLoadInformation contains the following information:
- Minimum Nodes: Minimum number of nodes specified for this application (from Application Capacity parameters).
- Maximum Nodes: Maximum number of nodes specified for this application (from Application Capacity parameters).
- Node Count: Number of nodes currently spanned by the application's child replicas.
- Application Load Metric Information: Load information for each metric defined in Application Capacity parameters. For each metric that is defined, the output contains the following information:
- Metric Name: Name of the metric.
- Reservation Capacity: Cluster capacity that is reserved in the cluster for this application.
- Application Load: Total Load of this application's child replicas.
- Application Capacity: Maximum permitted value of Application Load.
Examples
Example 1: Get load information
PS C:\> Get-ServiceFabricApplicationLoadInformation -ApplicationName fabric:/MyApp
This command gets load information for the application fabric://MyApp.
Parameters
-ApplicationName
Specifies a Service Fabric application.
Parameter properties
Type: | String |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
(All)
Position: | 0 |
Mandatory: | True |
Value from pipeline: | False |
Value from pipeline by property name: | True |
Value from remaining arguments: | False |
-TimeoutSec
Specifies the time-out period, in seconds, for the operation.
Parameter properties
Type: | Int32 |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
(All)
Position: | Named |
Mandatory: | False |
Value from pipeline: | False |
Value from pipeline by property name: | False |
Value from remaining arguments: | False |
CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.