Skip to content

Latest commit

 

History

History
15 lines (14 loc) · 483 Bytes

calculate-the-average-size-of-perf-usage-reports-per-computer.md

File metadata and controls

15 lines (14 loc) · 483 Bytes

Calculate the average size of perf usage reports per computer

#avg #sort #barchart

This example calculates the average size of perf usage reports per computer, over the last 3 hours. The results are shown in a bar chart.

Usage 
| where TimeGenerated > ago(3h)
| where DataType == "Perf" 
| where QuantityUnit == "MBytes" 
| summarize avg(Quantity) by Computer
| sort by avg_Quantity desc nulls last
| render barchart