Can the memory usage of a specific process be queried by HostMonitor?
I have seen PerformanceCounter, which gives overall system states, and Dominant Process which gives values of the dominant process.
Is it possible to get the values like in "Dominant Process" but for a named process?
Thanks for replies.
Guido
Memory usage of a specific process?
You may use WMI or Performance Counter test methods
http://www.ks-soft.net/hostmon.eng/mfra ... ts.htm#wmi
http://www.ks-soft.net/hostmon.eng/mfra ... erfcounter
E.g. you may use Performance Counter test to check the following counter
\\hostname\Process(processname)\Working Set
or you may use WMI test and query like
select WorkingSetSize from Win32_Process where Caption='processname.exe'
Regards
Alex
http://www.ks-soft.net/hostmon.eng/mfra ... ts.htm#wmi
http://www.ks-soft.net/hostmon.eng/mfra ... erfcounter
E.g. you may use Performance Counter test to check the following counter
\\hostname\Process(processname)\Working Set
or you may use WMI test and query like
select WorkingSetSize from Win32_Process where Caption='processname.exe'
Regards
Alex