我正在使用Azure的PS命令来尝试获取特定VM的当前状态。我认为这将是直截了当但我错了。
我目前正在使用此cmd-let:
Get-AzureRmVM -Name CM01 -ResourceGroupName RG -Status
ResourceGroupName : RG
Name : CM01
Disks[0] :
Name : CM01
Statuses[0] :
Code : ProvisioningState/succeeded
Level : Info
DisplayStatus : Provisioning succeeded
Time : 18/08/2016 08:10:20
VMAgent :
VmAgentVersion : 2.7.1198.778
ExtensionHandlers[0] :
Type : Microsoft.Azure.RecoveryServices.VMSnapshot
TypeHandlerVersion : 1.0.10.0
Status :
Code : ProvisioningState/succeeded
Level : Info
DisplayStatus : Ready
Message : Plugin enabled (name: Microsoft.Azure.RecoveryServices.VMSnapshot, version: 1.0.10.0).
ExtensionHandlers[1] :
Type : Microsoft.Compute.BGInfo
TypeHandlerVersion : 1.2.2
Status :
Code : ProvisioningState/succeeded
Level : Info
DisplayStatus : Ready
Message : Plugin enabled (name: Microsoft.Compute.BGInfo, version: 1.2.2).
Statuses[0] :
Code : ProvisioningState/succeeded
Level : Info
DisplayStatus : Ready
Message : GuestAgent is running and accepting new configurations.
Time : 18/08/2016 14:52:59
Statuses[0] :
Code : ProvisioningState/succeeded
Level : Info
DisplayStatus : Provisioning succeeded
Time : 18/08/2016 12:14:04
Statuses[1] :
Code : PowerState/running
Level : Info
DisplayStatus : VM running
请注意,我使用-Status标志,否则我将无法获得与VM状态相关的任何信息
它返回一个包含Statuses数组的对象。我不知道如何访问状态[1] .DisplayStatus位置来获取'VM running'消息。 VM状态是否始终存储在状态[1]中?
这就是我试图获取值的方式(它什么都不返回):
Get-AzureRmVM -Name CM -ResourceGroupName RG -Status | Select Statuses[1].DisplayStatus
Statuses[1].DisplayStatus
-------------------------
- 是否有更简单的方法来访问VM状态?
非常感谢
答案 0 :(得分:3)
请尝试使用此命令:
$RG = "RG01"
$VM = "ADFS"
((Get-AzureRmVM -ResourceGroupName $RG -Name $VM -Status).Statuses[1]).code
基本上这是PowerShell Inception。你必须......更深入:D
答案 1 :(得分:2)
要使100% - 确保您获得正确的状态(如果索引更改),您可能希望尝试在代码中过滤PowerState/
的状态:
$RG = "RG"
$VM = "CM01"
$VMStats = (Get-AzureRmVM -Name $VM -ResourceGroupName $RG -Status).Statuses
($VMStats | Where Code -Like 'PowerState/*')[0].DisplayStatus