You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-monitor/platform/data-ingestion-time.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -84,7 +84,7 @@ Ingestion time may vary for different resources under different circumstances. Y
84
84
### Ingestion latency delays
85
85
You can measure the latency of a specific record by comparing the result of the [ingestion_time()](/azure/kusto/query/ingestiontimefunction) function to the _TimeGenerated_ property. This data can be used with various aggregations to find how ingestion latency behaves. Examine some percentile of the ingestion time to get insights for large amount of data.
86
86
87
-
For example, the following query will show you which computers had the highest ingestion time over the current day:
87
+
For example, the following query will show you which computers had the highest ingestion time over the prior 8 hours:
88
88
89
89
```Kusto
90
90
Heartbeat
@@ -95,7 +95,7 @@ Heartbeat
95
95
| top 20 by percentile_E2EIngestionLatency_95 desc
96
96
```
97
97
98
-
If you want to drill down on the ingestion time for a specific computer over a period of time, use the following query which also visualizes the data in a graph:
98
+
If you want to drill down on the ingestion time for a specific computer over a period of time, use the following query which also visualizes the data from the past day in a graph:
0 commit comments