Fabric RTI 101: Working with Time Series in KQL
In KQL, time is one of the most important concepts — it’s central to how telemetry and log data are analyzed.
Most KQL datasets include a Timestamp column, and nearly every query begins by filtering to a specific time range.
You can do that using a where clause, such as:
| where Timestamp between (ago(1h) .. now())
This filters your events to just those that occurred within the last hour. It’s an efficient way to narrow down large datasets quickly.
2026-06-14

