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 |
|
|
Physical memory usage |
|
|
Number of physical CPUs |
|
|
Number of Logical CPUs |
|
|
Processor queue length |
|
|
3 Replies
- CliveWatsonFormer 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).
- PrashantM2495Copper ContributorHi Clive,
Thanks a lot for sharing web link for performance counters. I can see most of them are for Azure Linux.
Is it possible to get similar one for Windows VMs? - CliveWatsonFormer Employee
Perf | where ObjectName == "Processor" | where CounterName == "% Processor Time" and InstanceName !="_Total" | summarize dcount(InstanceName), make_set(InstanceName) by Computer