aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Framework/Monitoring
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-10-07 00:30:35 +0100
committerJustin Clark-Casey (justincc)2011-10-07 00:30:35 +0100
commit1f78dc65041729567edc411a3e63dd9a32a268a3 (patch)
treec32c976ab9088dff3804fb107ad2b3168e728c4a /OpenSim/Region/CoreModules/Framework/Monitoring
parentMerge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff)
downloadopensim-SC_OLD-1f78dc65041729567edc411a3e63dd9a32a268a3.zip
opensim-SC_OLD-1f78dc65041729567edc411a3e63dd9a32a268a3.tar.gz
opensim-SC_OLD-1f78dc65041729567edc411a3e63dd9a32a268a3.tar.bz2
opensim-SC_OLD-1f78dc65041729567edc411a3e63dd9a32a268a3.tar.xz
remove the pointless slashes on the end of the (5!) different server stat retrieval mechanisms.
Original request URLs that end with / will still work, but this will allow one to type /simstatus as well as /simstatus/ Can't do this with webstats yet since it does insane things to the path.
Diffstat (limited to 'OpenSim/Region/CoreModules/Framework/Monitoring')
-rw-r--r--OpenSim/Region/CoreModules/Framework/Monitoring/MonitorModule.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Framework/Monitoring/MonitorModule.cs b/OpenSim/Region/CoreModules/Framework/Monitoring/MonitorModule.cs
index b5cbcbb..09095c2 100644
--- a/OpenSim/Region/CoreModules/Framework/Monitoring/MonitorModule.cs
+++ b/OpenSim/Region/CoreModules/Framework/Monitoring/MonitorModule.cs
@@ -73,7 +73,7 @@ namespace OpenSim.Region.CoreModules.Framework.Monitoring
73 "Returns a variety of statistics about the current region and/or simulator", 73 "Returns a variety of statistics about the current region and/or simulator",
74 DebugMonitors); 74 DebugMonitors);
75 75
76 MainServer.Instance.AddHTTPHandler("/monitorstats/" + m_scene.RegionInfo.RegionID + "/", StatsPage); 76 MainServer.Instance.AddHTTPHandler("/monitorstats/" + m_scene.RegionInfo.RegionID, StatsPage);
77 } 77 }
78 78
79 public Hashtable StatsPage(Hashtable request) 79 public Hashtable StatsPage(Hashtable request)