Questions tagged [azure-app-service-plans]

594 questions
12
votes
4 answers

Azure Functions consumption plan naming

I've created a new Function App in Azure. I picked a consumption plan for the App Service Plan. Once the app is created I now have a new App Service Plan called "WestEuropePlan" In my resource group. Next thing. IT department says "WestEuropePlan"…
CodeMonkey
  • 3,418
  • 4
  • 30
  • 53
12
votes
3 answers

"No route registered for '/ZipDeployUI' in Azure

Am following node application deployment guide in Azure app service .After creating the web app in azure it asks to redirect to below url https://.scm.azurewebsites.net/ZipDeployUI But after redirecting it says. "No route registered for…
12
votes
1 answer

How to deploy a solution with two projects to Azure App Service?

I am trying to minimize the cost of running my web app in Azure App Service. I have a Visual Studio 2017 solution with two Web Projects: Web and API (both .NET Core). The entire solution is part of a single GitHub Repo. Before adding the API…
Martin
  • 39,309
  • 62
  • 192
  • 278
11
votes
1 answer

What is the reserved argument in azure app service plan terraform config

While writing config for App Service Plan, I came across the argument reserved in the terraform documentation reserved - (Optional) Is this App Service Plan Reserved. Defaults to false. I am not sure what this reserved argument would do if set to…
Naresh Babu
  • 702
  • 1
  • 7
  • 17
11
votes
1 answer

HTTP 502 from one instance of an Azure Web App

We suddenly began experiencing HTTP 502 errors (The specified CGI application encountered an error and the server terminated the process) from one of the instances of our web app. I was able to determine this using Kudu's "Support" tab whereby you…
10
votes
1 answer

Error creating auto-scaling rule for app service using terraform in azure

resource "azurerm_monitor_autoscale_setting" "test" { name = "AutoscaleSetting" resource_group_name = "${azurerm_resource_group.main.name}" location = "${azurerm_resource_group.main.location}" target_resource_id =…
10
votes
3 answers

Does Azure charge for number of app services

Does Azure charge only for the utilization of App service plan resources or for the number of app services we create under that App service plan? Does the number of app services created under a app service plan effects cost? I am developing a…
Isuru
  • 950
  • 1
  • 13
  • 34
9
votes
1 answer

Azure App Service Plan - What does minutes/day mean?

I have ASMX webservice with 1 MSSQL Database and a Single Table. I have currently deployed it to Azure in the App Service I have upgraded from Free Trial to Pay Per Use Plan. I'm really confused with the App Service Plan The ASMX Service is called…
techno
  • 6,100
  • 16
  • 86
  • 192
9
votes
1 answer

Azure App service with or without docker

I have some experience in using azure app services without docker. I did worked on k8 with docker. Now I am seeing an option to deploy containers in azure app services. As per my understanding app services internally use container and orchestration…
8
votes
2 answers

What CPU is Azure App Service running on?

What processor is Microsoft App Service V1 running on? V2 seems to be running on Dv2-series VMs: "The new Premium V2 tier features Dv2-series VMs with even faster processors, SSD storage, and double the memory-to-core ratio compared to the previous…
thomius
  • 784
  • 2
  • 9
  • 21
8
votes
3 answers

Azure Functions: We are not able to retrieve the runtime master key

Azure Functions bug. I get the error in the portal Error: We are not able to retrieve the runtime master key. Please try again later. Session Id: d13fceebd4ea4cb1b7fb3d3829dd1406 Timestamp: 2017-08-24T20:04:23.555Z I've tried all of the…
Jeff
  • 35,755
  • 15
  • 108
  • 220
8
votes
2 answers

How can I make sure a new autoscaled Azure App Service instance is warm before it handles traffic?

With autoscaling turned on on an app service, Azure will add instances as needed based on set rules. I always start from a minimum of 2 instances. I'd like to make sure that traffic is not directed to the new app service instance until the…
8
votes
1 answer

Server Garbage Collection on Azure App Service

Is it possible to use Server Garbage Collection on Azure App Service? I have set gcServer in the web.config (D:\home\site\wwwroot\web.config) as follows:
8
votes
2 answers

Azure App Service - CPU Percentage of instance vs plan

I am running a load test against my Azure Web App P3 pricing tier. We have the following auto scale out strategy - Min Instance 5 and Max instance 20, Increase by 1 Instance if CPU Percentage (Max) goes more than 85%, Decrease by 1 Instance if CPU…
8
votes
4 answers

Move Azure website between App Service Plans

Is it possible to move an Azure Website to a different (or new) App Service Plan? I have already tried both the old and new portals but cannot find the options for this.
1
2
3
39 40