Perfmon equivalents of Process.<?> memory fields?

  • Thread starter Thread starter Bert Hyman
  • Start date Start date
B

Bert Hyman

[I posted this earlier to what was probably the wrong newsgroup]

There are a number of memory-related fields in the Process object that
appear to be similar to counters under the Process object in Perfmon.

Is there a mapping of the Process field names to the Perfmon counters?

Are they really the same values but with different names?
 
Hell Bert,

Thanks for your post.
Are they really the same values but with different names?

I did not find an existing document which maps the Process field names to
performance counters. Based on my experience and research, they are of the
same values with different names, and I create a table of their mapping as
shown below:

Process field names
Win32_PerfFormattedData_PerfProc_Process
---------------------------------------------
-------------------------------------
NonpagedSystemMemorySize PoolNonpagedBytes
PagedMemorySize PageFileBytes
PagedSystemMemorySize PoolPagedBytes
PeakPagedMemorySize PageFileBytesPeak
PeakVirtualMemorySize VirtualBytesPeak
PeakWorkingSet WorkingSetPeak
PriorityClass PriorityBase
PrivateMemorySize PrivateBytes
VirtualMemorySize VirtualBytes


Win32_PerfFormattedData_PerfProc_Process
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wmisdk/wmi/
win32_perfformatteddata_perfproc_process.asp

Please feel free to let me know if you have any problems or concerns.

Have a nice day!

Regards,

HuangTM
Microsoft Online Partner Support
MCSE/MCSD

Get Secure! -- www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.
 
Back
Top