Metodtips för FinOps för webben
Den här artikeln beskriver en samling beprövade FinOps-metoder för webbtjänster. Den innehåller strategier för att optimera kostnader, förbättra effektiviteten och använda Azure Resource Graph-frågor (ARG) för att få insikter om dina webbresurser. Genom att följa dessa metoder kan du se till att dina webbtjänster är kostnadseffektiva och anpassade till organisationens ekonomiska mål.
App Service
Följande avsnitt innehåller ARG-frågor för App Service. De här frågorna hjälper dig att få insikter om dina App Service-resurser och se till att de är konfigurerade med lämpliga inställningar. Genom att analysera App Service-planer och visa rekommendationer från Azure Advisor kan du optimera dina App Service-resurser för kostnadseffektivitet.
Fråga: Webbprogramstatus
Den här ARG-frågan hämtar status och grundläggande information om webbprogram i Din Azure-miljö.
Kategori
Övervakning
Fråga
resources
| where type =~ 'Microsoft.Web/sites'
| project
id,
WebAppName = name,
Type = kind,
Status = tostring(properties.state),
WebAppLocation = location,
AppServicePlan = tostring(properties.serverFarmId),
WebAppRG = resourceGroup,
SubscriptionId = subscriptionId
| order by id asc
Fråga: Information om App Service-plan
Den här ARG-frågan hämtar detaljerad information om Azure App Service-planer i din Azure-miljö.
Kategori
Resurshantering
Fråga
resources
| where type == "microsoft.web/serverfarms" and sku.tier !~ 'Free'
| project
planId = tolower(tostring(id)),
name,
skuname = tostring(sku.name),
skutier = tostring(sku.tier),
workers = tostring(properties.numberOfWorkers),
maxworkers = tostring(properties.maximumNumberOfWorkers),
webRG = resourceGroup,
Sites = tostring(properties.numberOfSites),
SubscriptionId = subscriptionId
| join kind=leftouter (
resources
| where type == "microsoft.insights/autoscalesettings"
| project
planId = tolower(tostring(properties.targetResourceUri)),
PredictiveAutoscale = properties.predictiveAutoscalePolicy.scaleMode,
AutoScaleProfiles = properties.profiles,
resourceGroup
) on planId
Letar du efter mer?
Missade vi något? Vill du se något tillagt? Vi vill gärna höra om eventuella frågor, problem eller lösningar som du vill se här. Skapa ett nytt problem med den information som du vill se här.
Relaterat innehåll
Relaterade resurser:
Relaterade lösningar: