Forum Discussion
PrashantM2495
Jun 02, 2020Copper Contributor
Log Analytics metrics for Memory & CPU Load
How to find equivalent metrics/counter in Azure Log Analytics for below Azure Metrics Windows VM Linux VM Physical memory Pagefile Virtual memory usage ...
CliveWatson
Jun 02, 2020Former Employee
Lots of the common ones are shown in the docs for Windows and Linux,
https://docs.microsoft.com/en-us/azure/azure-monitor/platform/data-sources-performance-counters
I don't remember a perf counter for physical CPUs, I think we can work it out - I'll look for an example later (I'm sure I have one).
CliveWatson
Jun 02, 2020Former Employee
Perf
| where ObjectName == "Processor"
| where CounterName == "% Processor Time" and InstanceName !="_Total"
| summarize dcount(InstanceName), make_set(InstanceName) by Computer