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