Skip to content

Commit 7bffd92

Browse files
authored
Updates
1 parent da19e6b commit 7bffd92

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

support/azure/azure-monitor/app-insights/telemetry/troubleshoot-high-data-ingestion.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ exceptions
151151

152152
Examine the evolution of ingestion over time based on the factors identified previously. This way can determine whether this behavior has been consistent or if changes occurred at a specific point. By analyzing data in this way, you can pinpoint when the change happened and provide a clearer understanding of the causes behind the high data ingestion. This insight will be important for addressing the issue and implementing effective solutions.
153153

154-
In the following queries, the [bin()](/kusto/query/bin-function) Kusto Query Language (KQL) scalar function is used to segment data into ome-day intervals. This approach facilitates trend analysis as you can see how data has changed or not changed over time.
154+
In the following queries, the [bin()](/kusto/query/bin-function) Kusto Query Language (KQL) scalar function is used to segment data into one-day intervals. This approach facilitates trend analysis as you can see how data has changed or not changed over time.
155155

156156
```Kusto
157157
dependencies
@@ -270,21 +270,21 @@ To determine the factors contributing to the costs, follow these steps:
270270
271271
### Scenario 3: Reach daily cap unexpectedly
272272
273-
Assume you reached the daily cap unexpectedly on September 4th. Use the following query to obtain a count of custom events and identify the most recent timestamp associated with each event:
273+
Assume you reached the daily cap unexpectedly on September 4. Use the following query to obtain a count of custom events and identify the most recent timestamp associated with each event:
274274
275275
```Kusto
276276
customEvents
277277
| where timestamp between(datetime(8/25/2024) .. 15d)
278278
| summarize count(), min(timestamp) by name
279279
```
280280

281-
This analysis indicates that certain events started being ingested on September 4th and subsequently became noisy very quickly.
281+
This analysis indicates that certain events started being ingested on September 4 and subsequently became noisy very quickly.
282282

283283
:::image type="content" source="media/troubleshoot-high-data-ingestion/custom-events.png" alt-text="Screenshot that shows a count of custom events.":::
284284

285285
## Reduce data ingestion costs
286286

287-
After identifying the factors in the Azure Monitor tables responsible for unexpected data ingestion, reduce data ingestion costs using the following methods per your scenarios:
287+
After identifying the factors in the Azure Monitor tables responsible for unexpected data ingestion, reduce data ingestion costs using the following methods per your scenarios.
288288

289289
### Method 1: Update the daily cap configuration
290290

0 commit comments

Comments
 (0)