From 62aad4c18f1ebc0780ce47cf179f3d5550ff0837 Mon Sep 17 00:00:00 2001 From: Justin Clark-Casey (justincc) Date: Mon, 10 Oct 2011 23:48:53 +0100 Subject: Add other region stats (total frame time, physics fps, etc.) currently missing from MonitorModule Unlike the other 3 stats mechanisms, monitor data can be queried per individual region, which makes this useful. This doesn't affect an of the existing monitored stats. --- .../Framework/Monitoring/Monitors/ChildAgentCountMonitor.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'OpenSim/Region/CoreModules/Framework/Monitoring/Monitors/ChildAgentCountMonitor.cs') diff --git a/OpenSim/Region/CoreModules/Framework/Monitoring/Monitors/ChildAgentCountMonitor.cs b/OpenSim/Region/CoreModules/Framework/Monitoring/Monitors/ChildAgentCountMonitor.cs index 4ab3edd..be0e8fb 100644 --- a/OpenSim/Region/CoreModules/Framework/Monitoring/Monitors/ChildAgentCountMonitor.cs +++ b/OpenSim/Region/CoreModules/Framework/Monitoring/Monitors/ChildAgentCountMonitor.cs @@ -40,12 +40,17 @@ namespace OpenSim.Region.CoreModules.Framework.Monitoring.Monitors #region Implementation of IMonitor + public string GetName() + { + return "ChildAgentCountMonitor"; + } + public double GetValue() { return m_scene.SceneGraph.GetChildAgentCount(); } - public string GetName() + public string GetFriendlyName() { return "Child Agent Count"; } -- cgit v1.1