Getting sub-Appdomain cpu usage, memory usage, and thread number in real-time

1.5k Views Asked by At

3-sub appdomain created in a process(main appdomain), and how to get sub-Appdomain cpu usage, memory usage, and the thread number in real-time?

2

There are 2 best solutions below

0
On

Using the following method, the acquired values seems incorrect.

public static double GetAppDomainCpuUsage(AppDomain hostDomain)
        {

            if (Process.GetCurrentProcess().TotalProcessorTime.TotalMilliseconds > 0)
                return hostDomain.MonitoringTotalProcessorTime.TotalMilliseconds * 100 /                  Process.GetCurrentProcess().TotalProcessorTime.TotalMilliseconds;
            return 0;
        }

        public static double GetAppDomainMemoryUsage(AppDomain hostDomain)
        {
            if (AppDomain.MonitoringSurvivedProcessMemorySize > 0)
                return (double)hostDomain.MonitoringSurvivedMemorySize * 100 / (double)AppDomain.MonitoringSurvivedProcessMemorySize;
            return 0;
        }

AppDomain.MonitoringIsEnabled = true;

0
On

CPU usage and other related information does no really apply to .Net AppDomain and it only exists at CLR level and not at OS level. So, by default you can only track these details at a process level.

Since .Net 4.0, AppDomiain has static property called MonitoringIsEnabled. Once this is set, you can track the details using other properties (AppDomain.Monitor<XXXX>). Note that this is still not real time. This might be a good start.