Skip to content

Commit 26c6c13

Browse files
authored
Merge pull request #89229 from bwren/am-ingestion-limit
Azure Monitor ingestion limit
2 parents 7bc9ca5 + 3b7b187 commit 26c6c13

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

articles/azure-monitor/platform/design-logs-deployment.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.service: azure-monitor
1111
ms.topic: article
1212
ms.tgt_pltfrm: na
1313
ms.workload: infrastructure-services
14-
ms.date: 08/07/2019
14+
ms.date: 09/20/2019
1515
ms.author: magoedte
1616
---
1717

@@ -31,6 +31,8 @@ A Log Analytics workspace provides:
3131

3232
This article provides a detailed overview of the design and migration considerations, access control overview, and an understanding of the design implementations we recommend for your IT organization.
3333

34+
35+
3436
## Important considerations for an access control strategy
3537

3638
Identifying the number of workspaces you need is influenced by one or more of the following requirements:
@@ -125,6 +127,19 @@ The *Access control mode* is a setting on each workspace that defines how permis
125127
126128
To learn how to change the access control mode in the portal, with PowerShell, or using a Resource Manager template, see [Configure access control mode](manage-access.md#configure-access-control-mode).
127129

130+
## Ingestion volume rate limit
131+
132+
Azure Monitor is a high scale data service that serves thousands of customers sending terabytes of data each month at a growing pace. The default ingestion rate threshold is set to **500 MB/min** per workspace. If you send data at a higher rate to a single workspace, some data is dropped, and an event is sent to the *Operation* table in your workspace every 6 hours while the threshold continues to be exceeded. If your ingestion volume continues to exceed the rate limit or you are expecting to reach it sometime soon, you can request an increase to your workspace by opening a support request.
133+
134+
To be notified on such an event in your workspace, create a [log alert rule](alerts-log.md) using the following query with alert logic base on number of results grater than zero.
135+
136+
``` Kusto
137+
Operation
138+
|where OperationCategory == "Ingestion"
139+
|where Detail startswith "The rate of data crossed the threshold"
140+
```
141+
142+
128143
## Recommendations
129144

130145
![Resource-context design example](./media/design-logs-deployment/workspace-design-resource-context-01.png)

includes/azure-monitor-limits-workspaces.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,18 @@ ms.custom: "include file"
6161
| Regions at capacity | West Central US | You cannot currently create a new workspace in this region since it is at temporary capacity limit. This limit is planned to be addressed by end of October, 2019. |
6262
| Data export | Not currently available | Use Azure Function or Logic App to aggregate and export data. |
6363

64+
**Data ingestion rate**
65+
66+
Azure Monitor is a high scale data service that serves thousands of customers sending terabytes of data each month at a growing pace. The default ingestion rate threshold is set to **500 MB/min** per workspace. If you send data at a higher rate to a single workspace, some data is dropped, and an event is sent to the *Operation* table in your workspace every 6 hours while the threshold continues to be exceeded. If your ingestion volume continues to exceed the rate limit or you are expecting to reach it sometime soon, you can request an increase to your workspace by opening a support request.
67+
68+
To be notified on such an event in your workspace, create a [log alert rule](../articles/azure-monitor/platform/alerts-log.md) using the following query with alert logic base on number of results grater than zero.
69+
70+
``` Kusto
71+
Operation
72+
|where OperationCategory == "Ingestion"
73+
|where Detail startswith "The rate of data crossed the threshold"
74+
```
75+
76+
6477
>[!NOTE]
6578
>Depending on how long you've been using Log Analytics, you might have access to legacy pricing tiers. Learn more about [Log Analytics legacy pricing tiers](https://docs.microsoft.com/azure/azure-monitor/platform/manage-cost-storage#legacy-pricing-tiers).

0 commit comments

Comments
 (0)