Forum Discussion

T150732D's avatar
T150732D
Copper Contributor
Jun 27, 2022

Sentinel Billable data

Hello can you please help me understand difference of two queries we received from vendor deployin sentinel. 

 

We have logic app running daily this query to see billable data (to monitor if we are reaching cap).

Usage
| where TimeGenerated > ago(1d)
| where IsBillable == true
| summarize BillableDataGB = sum(Quantity) / 1000. by bin(TimeGenerated, 31d), Solution
| summarize TotalDataGB = sum(BillableDataGB)

 

Also we got the visualisation in chart over mont

Usage
|where TimeGenerated > ago (30d)
|where IsBillable == true
| summarize BillableDataGB=sum(Quantity) / 1000. by bin(TimeGenerated, 1d), Solution
| render columnchart

 

 

However often there is big difference, while the first one reports over several days numbers 300-400, when i look at the data in second I see peaks to 700 GB.

 

Example below. On 22June we see peak to 700GB, however the outcome of the first query was always 300-400 GB when reported 

23.6. reported previous daily ingestion : 415.907715810097 GB.

22.6 reported previous daily ingestion : 367.10762928873 GB.

 

Does not make sense to me have such big difference.

 

 

 

ALSO WHAt Query for monnitoring and analyzing daily ingestion are you using please???

 

Resources