Freigeben über


Azure Resource Graph-Beispielabfragen für Azure Advisor

Diese Seite enthält eine Sammlung von Azure Resource Graph-Beispielabfragen für Azure Advisor.

Beispielabfragen

Abrufen der Zusammenfassung der Kosteneinsparungen aus Azure Advisor

Mit dieser Abfrage werden die Kosteneinsparungen der einzelnen Azure Advisor-Empfehlungen zusammengefasst.

AdvisorResources
| where type == 'microsoft.advisor/recommendations'
| where properties.category == 'Cost'
| extend
  resources = tostring(properties.resourceMetadata.resourceId),
  savings = todouble(properties.extendedProperties.savingsAmount),
  solution = tostring(properties.shortDescription.solution),
  currency = tostring(properties.extendedProperties.savingsCurrency)
| summarize
  dcount(resources),
  bin(sum(savings), 0.01)
  by solution, currency
| project solution, dcount_resources, sum_savings, currency
| order by sum_savings desc
az graph query -q "AdvisorResources | where type == 'microsoft.advisor/recommendations' | where properties.category == 'Cost' | extend resources = tostring(properties.resourceMetadata.resourceId), savings = todouble(properties.extendedProperties.savingsAmount), solution = tostring(properties.shortDescription.solution), currency = tostring(properties.extendedProperties.savingsCurrency) | summarize dcount(resources), bin(sum(savings), 0.01) by solution, currency | project solution, dcount_resources, sum_savings, currency | order by sum_savings desc"

Nächste Schritte