使用Azure Powershell获取角色即时状态

时间:2017-12-18 14:48:25

标签: powershell azure

如何在Azure Powershell中获取角色实例的状态?我正在使用以下命令,但它没有显示角色的状态

Get-AzureRole -ServiceName serviceNameHere

这是输出:

RoleName             : Role Name
InstanceCount        : 1
DeploymentID         : ***deployment id*******
OSVersion            : ***OSVersion*******
ServiceName          : ***service name*******
OperationDescription : Get-AzureRole  
OperationId          : ***operation id*******
OperationStatus      : Succeeded

任何人都可以提供帮助?谢谢!

1 个答案:

答案 0 :(得分:0)

想出来。我用过:

Get-AzureRole -ServiceName "serviceNameHere" -Slot "Production" -InstanceDetails | Format-Table -Auto "InstanceName", "InstanceSize", "InstanceStatus"

如果有人很快遇到此事。