Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Latest commit

 

History

History
14 lines (12 loc) · 436 Bytes

perf-cpu-utilization-graph-per-computer.md

File metadata and controls

14 lines (12 loc) · 436 Bytes

Perf CPU Utilization graph per computer

#startswith #avg #timechart

This example calculates and charts the CPU utilization of computers that start with "Contoso".

Perf
| where TimeGenerated > ago(4h)
| where Computer startswith "Contoso" 
| where CounterName == @"% Processor Time"
| summarize avg(CounterValue) by Computer, bin(TimeGenerated, 15m) 
| render timechart