Dec 12 2023 07:23 AM
Hi , would like to know if it is possible to breakdown the commonSecurityLog table that it will show the data that is ingested by Computer (ip) GB and cost ?
Dec 12 2023 03:22 PM
@Guy_S_Dev1 Hi, this should get you started.
let price_ = 2.4; // use your value here for cost per GByte
CommonSecurityLog
| summarize GB = round(sum(_BilledSize)/(1024*1024*1024),2),
estimatedPrice = round(sum(_BilledSize)/(1024*1024*1024) * price_,2)
by Computer
| order by GB desc