The Azure Quickstart templates are currently available in English
This template allows you to deploy an autoscale policy for Azure AppService Plan resource.
Tuto šablonu Azure Resource Manageru (ARM) vytvořil člen komunity a ne Microsoft. Licenci na každou šablonu ARM vám na základě licenční smlouvy uděluje její vlastník, ne Microsoft. Za šablony ARM poskytované a licencované členy komunity nenese Microsoft žádnou odpovědnost ani neprověřuje jejich zabezpečení, kompatibilitu nebo výkon. Šablony ARM komunity nejsou podporované v rámci žádné služby nebo programu podpory Microsoftu a jsou dostupné TAK JAK JSOU, bez jakékoliv záruky.
Parametry
Název parametru | Popis |
---|---|
svcPlanName | The name of the App Service plan. |
sku | The pricing tier for the App Service plan. |
svcPlanSize | The instance size of the app. |
minimumCapacity | The minimum capacity. Autoscale engine will ensure the instance count is at least this value. |
maximumCapacity | The maximum capacity. Autoscale engine will ensure the instance count is not greater than this value. |
defaultCapacity | The default capacity. Autoscale engine will preventively set the instance count to be this value if it can not find any metric data. |
metricName | The metric name. |
metricThresholdToScaleOut | The metric upper threshold. If the metric value is above this threshold then autoscale engine will initiate scale out action. |
metricThresholdToScaleIn | The metric lower threshold. If the metric value is below this threshold then autoscale engine will initiate scale in action. |
changePercentScaleOut | The percentage to increase the instance count when autoscale engine is initiating scale out action. |
changePercentScaleIn | The percentage to decrease the instance count when autoscale engine is initiating scale in action. |
autoscaleEnabled | A boolean to indicate whether the autoscale policy is enabled or disabled. |
Použití šablony
PowerShell
New-AzResourceGroup -Name <resource-group-name> -Location <resource-group-location> #use this command when you need to create a new resource group for your deploymentInstalace a konfigurace Azure PowerShell
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/monitor-autoscale-webappserviceplan-simplemetricbased/azuredeploy.json
Příkazový řádek
az group create --name <resource-group-name> --location <resource-group-location> #use this command when you need to create a new resource group for your deploymentInstalace a konfigurace rozhraní Azure Cross-Platform Command-Line Interface
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/monitor-autoscale-webappserviceplan-simplemetricbased/azuredeploy.json