Skip to content

Commit 3dddc5f

Browse files
committed
fixes
1 parent 56c9d43 commit 3dddc5f

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

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

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,16 @@ This article provides a detailed overview of the design and migration considerat
3333

3434
## Ingestion limit
3535

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.
36+
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.
3737

3838
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.
3939

4040
``` Kusto
4141
Operation
42-
|where OperationCategory =="Ingestion"
43-
|where Detailstartswith"The rate of data crossed the threshold"
42+
|where OperationCategory == "Ingestion"
43+
|where Detail startswith "The rate of data crossed the threshold"
4444
```
4545

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.
4746

4847

4948
## Important considerations for an access control strategy

includes/azure-monitor-limits-workspaces.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,17 +63,16 @@ ms.custom: "include file"
6363

6464
**Data ingration rate**
6565

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.
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.
6767

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.
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.
6969

7070
``` Kusto
7171
Operation
72-
|where OperationCategory =="Ingestion"
73-
|where Detailstartswith"The rate of data crossed the threshold"
72+
|where OperationCategory == "Ingestion"
73+
|where Detail startswith "The rate of data crossed the threshold"
7474
```
7575

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.
7776

7877
>[!NOTE]
7978
>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)