aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Monitoring
diff options
context:
space:
mode:
authorRobert Adams2013-03-19 12:37:44 -0700
committerRobert Adams2013-03-19 12:37:44 -0700
commitc2e4f8aed5dee4a35679d646326537a15153f19d (patch)
tree4359818bf02511a469638e8dff11f0be463b9810 /OpenSim/Framework/Monitoring
parentFor those people collecting and comparing logfiles from servers scattered (diff)
downloadopensim-SC_OLD-c2e4f8aed5dee4a35679d646326537a15153f19d.zip
opensim-SC_OLD-c2e4f8aed5dee4a35679d646326537a15153f19d.tar.gz
opensim-SC_OLD-c2e4f8aed5dee4a35679d646326537a15153f19d.tar.bz2
opensim-SC_OLD-c2e4f8aed5dee4a35679d646326537a15153f19d.tar.xz
For the moment, disable the output of the 'scene' statistics in SimExtraStatsCollector
and thus for the command 'show stats' because it is ugly and most of the information is already output in the formatted printout that appears before.
Diffstat (limited to 'OpenSim/Framework/Monitoring')
-rw-r--r--OpenSim/Framework/Monitoring/SimExtraStatsCollector.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Framework/Monitoring/SimExtraStatsCollector.cs b/OpenSim/Framework/Monitoring/SimExtraStatsCollector.cs
index 109a58f..6a68322 100644
--- a/OpenSim/Framework/Monitoring/SimExtraStatsCollector.cs
+++ b/OpenSim/Framework/Monitoring/SimExtraStatsCollector.cs
@@ -359,8 +359,9 @@ Asset service request failures: {3}" + Environment.NewLine,
359 inPacketsPerSecond, outPacketsPerSecond, pendingDownloads, pendingUploads, unackedBytes, totalFrameTime, 359 inPacketsPerSecond, outPacketsPerSecond, pendingDownloads, pendingUploads, unackedBytes, totalFrameTime,
360 netFrameTime, physicsFrameTime, otherFrameTime, agentFrameTime, imageFrameTime)); 360 netFrameTime, physicsFrameTime, otherFrameTime, agentFrameTime, imageFrameTime));
361 361
362 /* 20130319 RA: For the moment, disable the dump of 'scene' catagory as they are mostly output by
363 * the two formatted printouts above.
362 SortedDictionary<string, SortedDictionary<string, Stat>> sceneStats; 364 SortedDictionary<string, SortedDictionary<string, Stat>> sceneStats;
363
364 if (StatsManager.TryGetStats("scene", out sceneStats)) 365 if (StatsManager.TryGetStats("scene", out sceneStats))
365 { 366 {
366 foreach (KeyValuePair<string, SortedDictionary<string, Stat>> kvp in sceneStats) 367 foreach (KeyValuePair<string, SortedDictionary<string, Stat>> kvp in sceneStats)
@@ -374,6 +375,7 @@ Asset service request failures: {3}" + Environment.NewLine,
374 } 375 }
375 } 376 }
376 } 377 }
378 */
377 379
378 /* 380 /*
379 sb.Append(Environment.NewLine); 381 sb.Append(Environment.NewLine);