Is there a way to configure a test to check the memory usage of a specific process?
Thanks.
Check the memory usage of a specific process
-
- Posts: 4
- Joined: Tue Oct 27, 2009 9:37 am
You may use WMI test and query like
Select VirtualSize from Win32_Process where Caption='processname.exe'
or
Select WorkingSetSize from Win32_Process where Caption='processname.exe'
depending on what kind of memory you need to check.
http://www.ks-soft.net/hostmon.eng/mfra ... ts.htm#wmi
Also you may use Performance Counter test method
http://www.ks-soft.net/hostmon.eng/mfra ... erfcounter
Regards
Alex
Select VirtualSize from Win32_Process where Caption='processname.exe'
or
Select WorkingSetSize from Win32_Process where Caption='processname.exe'
depending on what kind of memory you need to check.
http://www.ks-soft.net/hostmon.eng/mfra ... ts.htm#wmi
Also you may use Performance Counter test method
http://www.ks-soft.net/hostmon.eng/mfra ... erfcounter
Regards
Alex