Forum Discussion
SebasL
Oct 05, 2020Copper Contributor
Getting the rank of a CounterValue
I'm having issues designing a query in Log Analytics. My goal is to get the computer's CPU rank out of 100 by comparing it to other LogAnalytics computers. let CPUavgOfMyComputer = Perf
| ...
- Oct 05, 2020
It was asking for a scalar expression, like this:
let CPUavgOfMyComputer = toscalar(Perf | where Computer has "name here" | where ObjectName == 'Processor' and CounterName == '% Processor Time' and InstanceName == '_Total' | summarize avg(CounterValue)); Perf | where ObjectName == 'Processor' and CounterName == '% Processor Time' and InstanceName == '_Total' | summarize tdigestRes = tdigest(CounterValue), count() | project rank_tdigest(tdigestRes, CPUavgOfMyComputer) * 100.0 / count_
CliveWatson
Oct 05, 2020Former Employee
It was asking for a scalar expression, like this:
let CPUavgOfMyComputer = toscalar(Perf
| where Computer has "name here"
| where ObjectName == 'Processor' and CounterName == '% Processor Time' and InstanceName == '_Total'
| summarize avg(CounterValue));
Perf
| where ObjectName == 'Processor' and CounterName == '% Processor Time' and InstanceName == '_Total'
| summarize tdigestRes = tdigest(CounterValue), count()
| project rank_tdigest(tdigestRes, CPUavgOfMyComputer) * 100.0 / count_
- SebasLOct 05, 2020Copper Contributor