是否有 Azure Powershell cmdlet 来获取订阅中 ARM VM 的核心和 CPU



我正在尝试使用 Get-AzureRmVM 获取订阅中的 ARM VM 列表,并使用 HardwareProfile.VmSize 对象获取它们的实例大小。有没有办法使用 cmdlet 获取每个 VM 的 #of CPU、#of 核心等(就像在经典中使用 Get-AzureRoleSize cmdlet 一样(?

你的意思是使用命令来获取这样的信息吗?

PS C:User> $size = (Get-AzureRmVM -ResourceGroupName ubuntu -Name vm1).HardwareProfile.VmSize
PS C:Users> get-azurermvmsize -location eastus | ?{ $_.name -eq $size }
Name            NumberOfCores MemoryInMB MaxDataDiskCount OSDiskSizeInMB ResourceDiskSizeInMB
----            ------------- ---------- ---------------- -------------- --------------------
Standard_DS1_v2             1       3584                2        1047552                 7168
如果要

获取多个虚拟机的总核心数,这里是完整的解决方案:

# Calculating total Amount of Cores
Write-Output "Calculating the total Cores of VMs ..."
try {
    $TotalCores = $null
    $Location = "westeurope"
    $Cores = $null
    $TotalVMs = (Get-AzVM -Status | Where-Object { $_.ProvisioningState -eq "Succeeded" }) | Sort-Object -Property Name
    foreach ($VM in $TotalVMs) {
        Write-Output "Checking $($Vm.Name) ..."
        $VMSize = (Get-AzVM -Name $VM.Name).HardwareProfile.VmSize
        $Cores = (Get-AzVMSize -location $Location | Where-Object { $_.name -eq $VMSize }).NumberOfCores
        $TotalCores += $Cores
    }
    Write-Output "Wow! Found '$TotalCores' Cores ..."
}
catch {
    $ErrorMsg = "[ERROR] while calculating the total CPU Cores: $($_.Exception.Message)!"
    Write-Error -Message $ErrorMsg
}

相关内容

最新更新