aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Framework/Monitoring/Monitors/ObjectCountMonitor.cs
blob: dd9b19df510851c37833ba89e29c08304cf17a32 (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
27
28
29
30
31
32
33
using OpenSim.Region.Framework.Scenes;

namespace OpenSim.Region.CoreModules.Framework.Monitoring.Monitors
{
    class ObjectCountMonitor : IMonitor
    {
        private readonly Scene m_scene;

        public ObjectCountMonitor(Scene scene)
        {
            m_scene = scene;
        }

        #region Implementation of IMonitor

        public double GetValue()
        {
            return m_scene.SceneGraph.GetTotalObjectsCount();
        }

        public string GetName()
        {
            return "Total Objects Count";
        }

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

        #endregion
    }
}