Questions tagged [azure-app-service-plans]

594 questions
7
votes
2 answers

Terraform Error deleting App Service Plan StatusCode=409 Server farm [asp] cannot be deleted because it has web app(s) [azure-function] assigned to it

I have an Azure Function and an Azure Service Plan that was both created using the following Terraform code: resource "azurerm_app_service_plan" "asp" { name = "asp-${var.environment}" resource_group_name = var.rg_name location …
Stian
  • 1,221
  • 1
  • 19
  • 26
7
votes
5 answers

Difference between Scale up and Scale out App Service plan

Actually I am getting System.OutOfMemoryException for blob trigger azure function.Do i need to scale up or Scale out App Service Plan to fix this problem. What is the difference between these two?
Rakesh Kumar
  • 2,701
  • 9
  • 38
  • 66
7
votes
1 answer

ASP.NET WebApp in Azure using lots of CPU

We have a long running ASP.NET WebApp in Azure which has no real endpoints exposed – it serves a single functional purpose primarily reading and manipulating database data, effectively a batched, scheduled task, triggered by a timer every 30…
7
votes
1 answer

Why can I easily have 100 web apps that barely do anything on my local machine but not on Azure App Service?

I'm trying to understand how I need to setup my Azure infrastructure for a large amount of low traffic apps. I'm trying to get a better picture of the underlying limitations. Why can I easily have 100 web apps that barely do anything on my local…
Dirk Boer
  • 8,522
  • 13
  • 63
  • 111
7
votes
2 answers

Do all app services on an app service plan share the same cost?

If I set an app service plan to an S2 and there are 2 (or more) app services on it is the cost 146/month or 146/month * 2?
Tija
  • 1,691
  • 4
  • 20
  • 33
7
votes
1 answer

Unable to mount volume in azure app service?

I am trying to deploy a Node SDK on azure app service through docker container. In my sdk, I have mounted a connection file & written a docker-compose for this. But when I deploy it by azure I get below error. InnerException:…
TechChain
  • 8,404
  • 29
  • 103
  • 228
7
votes
0 answers

Application Insights not work in Web App for Azure Containers

Folks, Can you tell me how to enable application insights in a linux docker application on Azure? Would I have to modify the service plan?
7
votes
1 answer

How to deploy Angular 6 with .NET Core 2.0 Web API Application to Microsoft Azure?

How to deploy Angular 6 with .NET Core 2.0 Web API Application to Microsoft Azure? I have created ASP.NET Core 2.0 Web API (Server-Side app) application and inside that created Angular 6.0 app (Client-Side app). Both apps are build and running…
7
votes
2 answers

OkHttp Android stream was reset: HTTP_1_1_REQUIRED

We are developing an Android application that should use Http/2 to connect to our Azure App Service. On the Azure App Service we have Http/2 enabled by using the steps in the following blog post:…
dpeeters
  • 101
  • 1
  • 5
7
votes
5 answers

Web App is not loading after deploying

I have a working app service named "matanwebserver" over a subscription in Azure. This is a website that I am working on. I work with Visual Studio. Now I created another Web App on the same subscription that I will use as an integration site so I…
7
votes
2 answers

Getting the azure app service slot name on startup?

How can I get the name of the slot (production or staging) of my app service when the asp.net core process starts. The HTTP_HOST environment variable doesn't appear to be set on startup and I have no http request to inspect.
Clement
  • 3,990
  • 4
  • 43
  • 44
7
votes
1 answer

Microsoft Azure App Service Storage

I have a doubt for purchase a microsoft azure app service to host my app. I have already tested the free profile and i am concerned to switch to a basic profile. That's my question. I have seen on this table on azure website here which i'll have…
7
votes
2 answers

Preventing staging site restart during a swap

From how I understand it, the only reason a staging site would require restart is if there exists app settings or connection strings configured as slot settings. Although this doesn't always seem to be true. One of our applications will restart…
Dave New
  • 38,496
  • 59
  • 215
  • 394
7
votes
2 answers

Azure App Service: How can I determine which process is consuming high CPU?

UPDATE: I've figured it out. See the end of this question. I have an Azure App Service running four sites. One of the sites has two deployment slots in addition to the primary one. Recently I've been seeing really high CPU utilization for the App…
7
votes
6 answers

How to scale Azure App Service instance size up or down on a schedule?

On auto scaling of Azure App Service, I only find the below. Scale a web app in Azure App Service This only allows for scaling to more or less instances. It does not allow for scaling to bigger and smaller instances. I want to schedule an app…
1 2
3
39 40