How do I know the hosting plan of my Azure function app?

Nandu S Raj 80 Reputation points
2024-11-04T20:07:44.8266667+00:00

I work for a corporate client. They manage the Azure subscriptions.I wanna know if my Function is hosted under a Consumption plan.Im unable to find much details from the 'App Service Plan' details.

The subscription type associated with the app service plan reads 'Azure plan'.

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
5,937 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Luis Arias 8,621 Reputation points Volunteer Moderator
    2024-11-04T20:33:02.5766667+00:00

    Hi Nandu, To find the hosting plan for your Azure Function App:

    Azure Portal: Go to Function App > Overview. Under Plan Type or Hosting Plan, check for:

    • Consumption Plan (if it's listed directly)
      • Premium or Dedicated (App Service) if hosted on those plans

    Azure CLI:

      az functionapp show --name <YourFunctionAppName> --resource-group <YourResourceGroupName> --query "properties.serverFarmId"
    

    Cross-reference the App Service Plan details to confirm the plan type.

    App Service Plan Details: In App Service Plan > Overview, check the SKU:

    • Y1 or Dynamic for Consumption Plan
      • EP for Premium Plan
      • Other SKUs like S1 or P1v2 for Dedicated Plans

    If the information helped address your question, please Accept the answer.

    Luis

    1 person found this answer helpful.
    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.