Skip to content

Commit 1ae159b

Browse files
authored
Merge pull request #1922 from Styxxy/patch-1
Fix code sample htmlencoded > in Troubleshoot AppInsights High Ing…
2 parents 12641a9 + 265d347 commit 1ae159b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Once you've identified an Application Insights resource or a Log Analytics works
2929

3030
```Kusto
3131
search *
32-
| where timestamp > ago(7d)
32+
| where timestamp > ago(7d)
3333
| summarize count() by $table
3434
| sort by count_ desc
3535
```
@@ -42,7 +42,7 @@ Once you've identified an Application Insights resource or a Log Analytics works
4242
4343
```Kusto
4444
systemEvents
45-
| where timestamp > ago(7d)
45+
| where timestamp > ago(7d)
4646
| where type == "Billing"
4747
| extend BillingTelemetryType = tostring(dimensions["BillingTelemetryType"])
4848
| extend BillingTelemetrySizeInBytes = todouble(measurements["BillingTelemetrySize"])

0 commit comments

Comments
 (0)