aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Framework/Monitoring/Monitors/ThreadCountMonitor.cs
blob: 9300a932f58768059f4586428baa6b2337fc2e26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

namespace OpenSim.Region.CoreModules.Framework.Monitoring.Monitors
{
    class ThreadCountMonitor : IMonitor
    {
        #region Implementation of IMonitor

        public double GetValue()
        {
            return System.Diagnostics.Process.GetCurrentProcess().Threads.Count;
        }

        public string GetName()
        {
            return "Total Threads";
        }

        public string GetFriendlyValue()
        {
            return (int)GetValue() + " Thread(s) (Global)";
        }

        #endregion
    }
}