Reputation: 799
I want to fetch the data size of a specific kusto query.
Query:
CustomData_CL
| where TimeGenerated between (datetime(2022-09-14 04:00:00) .. datetime(2022-09-14 05:00:00))
Can anyone please suggest on the same ?
Upvotes: 1
Views: 843
Reputation: 44991
CustomData_CL
| where TimeGenerated between (datetime(2022-09-14 04:00:00) .. datetime(2022-09-14 05:00:00))
| summarize sum(estimate_data_size(*))
Upvotes: 1