Forum Discussion

JoseCarlosMagno's avatar
JoseCarlosMagno
Copper Contributor
Oct 30, 2018

Behaviour different from old OMS to new Azure Portal

I have a query that show high consumption disk. In old OMS Portal, it render timechart detailed by each "Instance Name". In new portal, it sums all "instance name" (see attached screenshots)

 

How can I show summarise by multiple fields

 

Perf
| where ObjectName == "Logical Disk" and CounterName == "% Used Space" and InstanceName != "_Total"
| summarize AggregatedValue = avg(CounterValue) by bin(TimeGenerated, 15m), Computer,InstanceName
| where AggregatedValue > 60
| render timechart
 
 

Resources