aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/UserStatistics/SimStatsAJAX.cs
diff options
context:
space:
mode:
authorTeravus Ovares2009-01-05 04:09:04 +0000
committerTeravus Ovares2009-01-05 04:09:04 +0000
commite4a8cc192dd16930718ff18838aa82e6187741bf (patch)
treea41492dc43a435fcd8a9395fb1f6aff8ae03b702 /OpenSim/Region/UserStatistics/SimStatsAJAX.cs
parent* Another minor GenericMessage fix - If we assume the method names are case-i... (diff)
downloadopensim-SC_OLD-e4a8cc192dd16930718ff18838aa82e6187741bf.zip
opensim-SC_OLD-e4a8cc192dd16930718ff18838aa82e6187741bf.tar.gz
opensim-SC_OLD-e4a8cc192dd16930718ff18838aa82e6187741bf.tar.bz2
opensim-SC_OLD-e4a8cc192dd16930718ff18838aa82e6187741bf.tar.xz
* Adds an active log to the WebStats console. for an example of it in use as it is right now see http://wmcv.com:9000/SStats/
* It still isn't quite ready to be used mainstream. * A couple of things to note, it doesn't keep track of the logs if nobody is looking at the stats. * It doesn't read the whole log file. Just the last 10 lines of the stream. Tested to 1GB+ logfiles with no noticeable performance issues.
Diffstat (limited to 'OpenSim/Region/UserStatistics/SimStatsAJAX.cs')
-rw-r--r--OpenSim/Region/UserStatistics/SimStatsAJAX.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/UserStatistics/SimStatsAJAX.cs b/OpenSim/Region/UserStatistics/SimStatsAJAX.cs
index f6dd1d6..26fe3d4 100644
--- a/OpenSim/Region/UserStatistics/SimStatsAJAX.cs
+++ b/OpenSim/Region/UserStatistics/SimStatsAJAX.cs
@@ -21,7 +21,6 @@ namespace OpenSim.Region.UserStatistics
21 Hashtable nh = new Hashtable(); 21 Hashtable nh = new Hashtable();
22 nh.Add("hdata", m_scene); 22 nh.Add("hdata", m_scene);
23 nh.Add("simstats", pParams["SimStats"]); 23 nh.Add("simstats", pParams["SimStats"]);
24
25 return nh; 24 return nh;
26 } 25 }
27 26
@@ -181,7 +180,9 @@ namespace OpenSim.Region.UserStatistics
181 HTMLUtil.TD_C(ref output); 180 HTMLUtil.TD_C(ref output);
182 HTMLUtil.TR_C(ref output); 181 HTMLUtil.TR_C(ref output);
183 HTMLUtil.TABLE_C(ref output); 182 HTMLUtil.TABLE_C(ref output);
183
184 } 184 }
185
185 return output.ToString(); 186 return output.ToString();
186 } 187 }
187 188