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
Restored logs retain their original timestamps. When you run a query on restored logs, set the time range for your query based on when the data was originally generated.
91
+
92
+
Set the query time range by either:
93
+
94
+
- Selecting **Custom** in the **Time range** dropdown at the top of the query editor and setting **From** and **To** values.
95
+
- Specifying the time range in the query. For example:
96
+
97
+
```kusto
98
+
let startTime =datetime(01/01/2022 8:00:00 PM);
99
+
let endTime =datetime(01/05/2022 8:00:00 PM);
100
+
TabelName_RST
101
+
| where TimeGenerated between(startTime .. endTime)
102
+
```
103
+
87
104
## Dismiss restored data
88
105
89
106
To save costs, dismiss restored data when you no longer need it by deleting the restored table.
0 commit comments