简体   繁体   English

Azure CLI - Azure 顾问建议 - 没有“Microsoft.Compute/virtualMachines”的成本数据

[英]Azure CLI - Azure Advisor Recommendation - does not have cost data for 'Microsoft.Compute/virtualMachines'

I was using az cli to get the Azure advisor recommendation data我正在使用 az cli 获取 Azure 顾问推荐数据

az advisor recommendation list  --category cost  --subscription ************* -o json --query  "[?impactedField == 'Microsoft.Compute/virtualMachines'].{resource: impactedValue, cat: category, cpu:  extendedProperties.MaxCpuP95 , memory:  extendedProperties.MaxMemoryP95, saving:  extendedProperties.savingsAmount, Recommendation: shortDescription.solution }"

While downloading pdf from portal it has "Potential savings/yr".从门户网站下载 pdf 时,它具有“潜在节省/年”。 I found az cli is retuning different output for "Reserve Instances Recommendation" but for VM's it does not have cost related information.我发现 az cli 正在为“预留实例建议”重新调整不同的 output,但对于 VM,它没有成本相关信息。

You can use the below PowerShell cmdlet to pull the Potential savings of the virtual machine's in the subscription.您可以使用以下 PowerShell cmdlet 提取订阅中虚拟机的潜在节省。

Get-AzAdvisorRecommendation -Category Cost | Where-Object {$_.ImpactedField -eq "Microsoft.Compute/virtualMachines"} | Select-Object -ExpandProperty ExtendedProperties

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 我将如何在 Activitiy 日志中获取 VM(Microsoft.Compute/virtualMachines/stop/action) 的此操作 - How I will get this operation of VM(Microsoft.Compute/virtualMachines/stop/action) in Activitiy Logs Azure Purview 是否有数据沿袭 API? - Does Azure Purview have a data lineage API? Azure 机器学习是否对计算实例收费,即使它们已停止? - Does Azure Machine Learning charge for Compute Instances even when they are stopped? 如何查看Azure Synapse中物化视图数据存储和维护成本? - How to check materialized view data storage and maintenance cost in Azure Synapse? Azure CLI aks install cli 权限被拒绝并且 sudo 不起作用 - Azure CLI aks install cli permission denied and sudo does not work 将 Azure CLI 命令与 Terraform 中的“数据源”一起使用 Windows 失败 - Use Azure CLI command with Terraform "data source" in Windows is failing 从 Azure SQL 数据库下载/传输数据到本地需要多少费用? - What is the cost to download/transfer data from Azure SQL database to local? Azure:安全分数推荐debian错误 - Azure: Secure score recommendation debian errors Azure 和 Microsoft.Azure 命名空间之间的冲突 - Conflict between Azure and Microsoft.Azure namespaces 部署Azure function到微软Azure中的应用服务 - Deploy Azure function to app service in Microsoft Azure
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM