Forum Discussion
roopesh_shetty
Apr 24, 2020Copper Contributor
TimeGenerated challenge
Hi Guys, I have this below query which is working fine as expected; Perf | where ObjectName == "Processor" and CounterName == "% Processor Time" | make-series AVG_USAGE=avg(CounterValue) d...
CliveWatson
Apr 24, 2020Former Employee
How about?
let eTime = now();
let sTime = now(-60m);
Perf
//| project sTime, eTime
| where ObjectName == "Processor" and CounterName == "% Processor Time"
| make-series AVG_USAGE=avg(CounterValue) default=0 on TimeGenerated from sTime to eTime step 1h by Computer
| project Computer, AVG_USAGE
- roopesh_shettyApr 26, 2020Copper Contributor
CliveWatson Thanks. let me try it once i connect my Azure. Thanks a lot.