Skip to content

Commit f05f3c7

Browse files
authored
Merge pull request #108082 from btardif/metrics
App Service Metrics update
2 parents 9197c37 + e04396d commit f05f3c7

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

articles/app-service/web-sites-monitor.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.custom: seodec18
1414
[Azure App Service](https://go.microsoft.com/fwlink/?LinkId=529714) provides
1515
built-in monitoring functionality for web apps, mobile, and API apps in the [Azure portal](https://portal.azure.com).
1616

17-
In the Azure portal, you can review *quotas* and *metrics* for an app and App Service plan, and set up *alerts* and *autoscaling* that are based metrics.
17+
In the Azure portal, you can review *quotas* and *metrics* for an app and App Service plan, and set up *alerts* and *autoscaling* rules based metrics.
1818

1919
## Understand quotas
2020

@@ -60,13 +60,17 @@ You can increase or remove quotas from your app by upgrading your App Service pl
6060
> **File System Usage** is a new metric being rolled out globally, no data is expected unless you have been whitelisted for private preview.
6161
>
6262
63+
> [!IMPORTANT]
64+
> **Average Response Time** will be deprecated to avoid confusion with metric aggregations. Use **Response Time** as a replacement.
65+
6366
Metrics provide information about the app or the App Service plan's behavior.
6467

6568
For an app, the available metrics are:
6669

6770
| Metric | Description |
6871
| --- | --- |
69-
| **Average Response Time** | The average time taken for the app to serve requests, in seconds. |
72+
| **Response Time** | The time taken for the app to serve requests, in seconds. |
73+
| **Average Response Time (deprecated)** | The average time taken for the app to serve requests, in seconds. |
7074
| **Average memory working set** | The average amount of memory used by the app, in megabytes (MiB). |
7175
| **Connections** | The number of bound sockets existing in the sandbox (w3wp.exe and its child processes). A bound socket is created by calling bind()/connect() APIs and remains until said socket is closed with CloseHandle()/closesocket(). |
7276
| **CPU Time** | The amount of CPU consumed by the app, in seconds. For more information about this metric, see [CPU time vs CPU percentage](#cpu-time-vs-cpu-percentage). |

articles/azure-monitor/platform/metrics-supported.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2168,6 +2168,12 @@ Azure Monitor provides several ways to interact with metrics, including charting
21682168

21692169
## Microsoft.Web/sites (excluding functions)
21702170

2171+
> [!NOTE]
2172+
> **File System Usage** is a new metric being rolled out globally, no data is expected unless you have been whitelisted for private preview.
2173+
2174+
> [!IMPORTANT]
2175+
> **Average Response Time** will be deprecated to avoid confusion with metric aggregations. Use **Response Time** as a replacement.
2176+
21712177
|Metric|Metric Display Name|Unit|Aggregation Type|Description|Dimensions|
21722178
|---|---|---|---|---|---|
21732179
|CpuTime|CPU Time|Seconds|Total|CPU Time|Instance|
@@ -2185,7 +2191,8 @@ Azure Monitor provides several ways to interact with metrics, including charting
21852191
|Http5xx|Http Server Errors|Count|Total|Http Server Errors|Instance|
21862192
|MemoryWorkingSet|Memory working set|Bytes|Average|Memory working set|Instance|
21872193
|AverageMemoryWorkingSet|Average memory working set|Bytes|Average|Average memory working set|Instance|
2188-
|AverageResponseTime|Average Response Time|Seconds|Average|Average Response Time|Instance|
2194+
|ResponseTime|Response Time|Seconds|Total|Response Time|Instance|
2195+
|AverageResponseTime|Average Response Time (deprecated)|Seconds|Average|Average Response Time|Instance|
21892196
|AppConnections|Connections|Count|Average|Connections|Instance|
21902197
|Handles|Handle Count|Count|Average|Handle Count|Instance|
21912198
|Threads|Thread Count|Count|Average|Thread Count|Instance|

0 commit comments

Comments
 (0)