我正在运行以下查询,它返回了多个服务实例,例如 firefox 和 firefox#1 firefox#2。
当我显示一个图表时,我得到多条线,而不是一条 Firefox 线,其中所有 3 个实例的平均值合为一个。
Perf
| where InstanceName
has "firefox"
and CounterValue > 0
| summarize ProcessorUsage = avg(CounterValue)
by bin(TimeGenerated,
5m), InstanceName
因此,与其返回 firefox#1 和 firefox#2,不如对所有 3 个的平均值进行分组。
我希望能够查看 VM 上每个进程的 CPU 使用情况,而不是查看同一应用程序的多个实例。