You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-app-configuration/monitor-app-configuration.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -149,15 +149,15 @@ Following are sample queries that you can use to help you monitor your App Confi
149
149
```Kusto
150
150
AACHttpRequest
151
151
| where TimeGenerated > ago(3d)
152
-
| summarize requestCount= count() by ClientIPAddress
152
+
| summarize requestCount=sum(HitCount) by ClientIPAddress
153
153
| order by requestCount desc
154
154
```
155
155
156
156
* Create a pie chart of the types of status codes received in the last three days
157
157
```Kusto
158
158
AACHttpRequest
159
159
| where TimeGenerated > ago(3d)
160
-
| summarize requestCount=count() by StatusCode
160
+
| summarize requestCount=sum(HitCount) by StatusCode
161
161
| order by requestCount desc
162
162
| render piechart
163
163
```
@@ -167,7 +167,7 @@ Following are sample queries that you can use to help you monitor your App Confi
167
167
AACHttpRequest
168
168
| where TimeGenerated > ago(14d)
169
169
| extend Day = startofday(TimeGenerated)
170
-
| summarize requestcount=count() by Day
170
+
| summarize requestcount=sum(HitCount) by Day
171
171
| order by Day desc
172
172
```
173
173
@@ -178,7 +178,7 @@ The following table lists common and recommended alert rules for App C
178
178
179
179
| Alert type | Condition | Description |
180
180
|:---|:---|:---|
181
-
|Rate Limit on Http Requests | Status Code = 429 | The configuration store has exceeded the [hourly request quota](./faq.yml#are-there-any-limits-on-the-number-of-requests-made-to-app-configuration). Upgrade to a standard store or follow the [best practices](./howto-best-practices.md#reduce-requests-made-to-app-configuration) to optimize your usage. |
181
+
|Request quota usage exceeded | RequestQuotaUsage >= 100 | The configuration store has exceeded the [request quota usage](./faq.yml#are-there-any-limits-on-the-number-of-requests-made-to-app-configuration). Upgrade to a standard tier store or follow the [best practices](./howto-best-practices.md#reduce-requests-made-to-app-configuration) to optimize your usage. |
0 commit comments