Skip to content

Commit c54ab1e

Browse files
committed
Azure Monitor ingestion limit
1 parent d71ac67 commit c54ab1e

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-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,21 @@ 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+
## Ingestion limit
35+
36+
Azure Monitor is a high scale data service that serves thousands of customers sending terabytes of data each month at a growing pace. Ingestion volume rate limit helps protect the platform from sudden increases in data volume. 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 that the threshold continues to be exceeded.
37+
38+
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.
39+
40+
``` Kusto
41+
Operation
42+
|where OperationCategory =="Ingestion"
43+
|where Detailstartswith"The rate of data crossed the threshold"
44+
```
45+
46+
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.
47+
48+
3449
## Important considerations for an access control strategy
3550

3651
Identifying the number of workspaces you need is influenced by one or more of the following requirements:

includes/azure-monitor-limits-workspaces.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,19 @@ 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 ingration 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. Ingestion volume rate limit helps protect the platform from sudden increases in data volume. 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 that the threshold continues to be exceeded.
67+
68+
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.
69+
70+
``` Kusto
71+
Operation
72+
|where OperationCategory =="Ingestion"
73+
|where Detailstartswith"The rate of data crossed the threshold"
74+
```
75+
76+
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.
77+
6478
>[!NOTE]
6579
>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)