Forum Discussion
smhasn
Nov 08, 2019Copper Contributor
Logs Size and Total Data Received in Azure Sentinel
Hello, I need to find a way how to check for the logs size in total that is been received from data connectors and the total number of data that is been received? Regards, Mazhar
- Nov 08, 2019
There are few ways to collect data from Azure Sentinel:
- Visualize data using the Azure Data Explorer (including excel report)
- Using Workbook inside Azure Sentinel to gain extensive insight
- Create a PowerBI report (need to create connector and few customizations)
- With KQL you can pull out any data, example general command:
// Billable performance data over the last 30 days
Usage| where TimeGenerated > ago(30d)| where IsBillable == true| summarize TotalVolumeGB = sum(Quantity) / 1024
Eli Shlomo
Nov 08, 2019MVP
There are few ways to collect data from Azure Sentinel:
- Visualize data using the Azure Data Explorer (including excel report)
- Using Workbook inside Azure Sentinel to gain extensive insight
- Create a PowerBI report (need to create connector and few customizations)
- With KQL you can pull out any data, example general command:
// Billable performance data over the last 30 days
Usage
| where TimeGenerated > ago(30d)
| where IsBillable == true
| summarize TotalVolumeGB = sum(Quantity) / 1024
User9864
Feb 24, 2025Copper Contributor
Hello,
By the documentation isn't TotalVolumeGB = sum(Quantity )/ 1000
?Azure Monitor Logs reference - Usage - Azure Monitor | Microsoft Learn
Analyze usage in a Log Analytics workspace in Azure Monitor - Azure Monitor | Microsoft Learn