aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Framework/Monitoring/Monitors/GCMemoryMonitor.cs
blob: cd67fea9acaa90d73e843d8b2a828d6f25f5088e (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
26
using System;

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

        public double GetValue()
        {
            return GC.GetTotalMemory(false);
        }

        public string GetName()
        {
            return "GC Reported Memory";
        }

        public string GetFriendlyValue()
        {
            return (int)(GetValue() / (1024*1024)) + "MB (Global)";
        }

        #endregion
    }
}