Kirill Yunussov
Kirill Yunussov

Reputation: 2303

How to see Azure App Service memory usage?

We have an Azure subscription through a Cloud Service Provider (CSP), which causes some limitations on what we can get and see in Azure. Nevertheless, we can see CPU and Memory usage per App Service Plan.

How can we see the same for specific App Services under the plan?

If I see abnormal CPU/memory utilization for the plan, how can I tell which App Service is causing it?

Upvotes: 23

Views: 29835

Answers (4)

Blackout
Blackout

Reputation: 448

Here are some of the ways to check for memory usage in 2025:

Options 1:

  1. Go to any site (app) that's part of the App Service Plan
  2. Click on "Diagnose and Solve Problems"
  3. Search for "memory usage" in the search box labeled "Search common problems or tools" (at the top of the view)

Diagnose and Solve Problems Screenshot

Option 2:

  1. Go to any site (app) that's part of the App Service Plan
  2. Click on "Metrics" under "Monitoring" tab in the side bar
  3. Select "Memory working set" in the metric drop-down

Monitoring Metrics Screenshot

Upvotes: 1

astaykov
astaykov

Reputation: 30893

You can check this under any Site -> scroll down to the "Metrics (App Service Plan)" option. There you will be able to see the metrics across all sites which are in the plan and filter the data the way you want:

enter image description here

Update 2018-12-04

Check other answers for more updated information, since the experience evolve and change over time. And stop down voting just because you came 2 years later. I will not include the current solution/screenshots here, because it will be unfair to the other contributors. And I cannot delete this answer as it is accepted one (because it was correct by the time asked and answered).

Upvotes: 17

lko
lko

Reputation: 8299

For an App Service it's currently under:

  1. Go to any site (app) that's part of the App Service Plan
  2. Click on "Diagnose and Solve Problems"
  3. Click on Performance Counters (on the right side of the screen)
  4. Check e.g. the "Average Memory Working Set" checkbox

Upvotes: 2

Sean
Sean

Reputation: 8807

  1. Go to any site (app) that's part of the App Service Plan
  2. Click on 'Diagnose and Solve Problems'
  3. In the screen that opens, click 'Metrics (App Service Plan)'.

enter image description here

Upvotes: 18

Related Questions