diff options
author | Justin Clarke Casey | 2008-02-22 23:15:00 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-02-22 23:15:00 +0000 |
commit | f95ad65189aaabceda0533e3bf5156f9af69e476 (patch) | |
tree | da9211e0a2cb7142a207a0a8e67f3d2d85db9c56 /OpenSim/Framework/Statistics | |
parent | * Winnow the debug and info messages associated with stat fetching (diff) | |
download | opensim-SC_OLD-f95ad65189aaabceda0533e3bf5156f9af69e476.zip opensim-SC_OLD-f95ad65189aaabceda0533e3bf5156f9af69e476.tar.gz opensim-SC_OLD-f95ad65189aaabceda0533e3bf5156f9af69e476.tar.bz2 opensim-SC_OLD-f95ad65189aaabceda0533e3bf5156f9af69e476.tar.xz |
* Improve alignment of packet queue stats headigns
* Correct asset cache stats table heading
* Correct spelling mistake in AssetCache (thanks ChrisD!)
Diffstat (limited to 'OpenSim/Framework/Statistics')
-rw-r--r-- | OpenSim/Framework/Statistics/SimExtraStatsReporter.cs | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/OpenSim/Framework/Statistics/SimExtraStatsReporter.cs b/OpenSim/Framework/Statistics/SimExtraStatsReporter.cs index acf2ecb..a9a4b4e 100644 --- a/OpenSim/Framework/Statistics/SimExtraStatsReporter.cs +++ b/OpenSim/Framework/Statistics/SimExtraStatsReporter.cs | |||
@@ -103,7 +103,7 @@ namespace OpenSim.Framework.Statistics | |||
103 | public string Report() | 103 | public string Report() |
104 | { | 104 | { |
105 | StringBuilder sb = new StringBuilder(Environment.NewLine); | 105 | StringBuilder sb = new StringBuilder(Environment.NewLine); |
106 | sb.Append("PACKET QUEUE STATISTICS"); | 106 | sb.Append("ASSET CACHE STATISTICS"); |
107 | sb.Append(Environment.NewLine); | 107 | sb.Append(Environment.NewLine); |
108 | sb.Append( | 108 | sb.Append( |
109 | string.Format( | 109 | string.Format( |
@@ -115,9 +115,11 @@ Texture cache contains {2,6} textures using {3,10:0.000}K" + Environment.NewLine | |||
115 | sb.Append(Environment.NewLine); | 115 | sb.Append(Environment.NewLine); |
116 | sb.Append("PACKET QUEUE STATISTICS"); | 116 | sb.Append("PACKET QUEUE STATISTICS"); |
117 | sb.Append(Environment.NewLine); | 117 | sb.Append(Environment.NewLine); |
118 | sb.Append("Agent UUID "); | 118 | sb.Append("Agent UUID "); |
119 | sb.Append(" Send In Out Resend "); | 119 | sb.Append( |
120 | sb.Append(" Land Wind Cloud Task Texture Asset"); | 120 | string.Format( |
121 | " {0,7} {1,7} {2,7} {3,7} {4,7} {5,7} {6,7} {7,7} {8,7} {9,7}", | ||
122 | "Send", "In", "Out", "Resend", "Land", "Wind", "Cloud", "Task", "Texture", "Asset")); | ||
121 | sb.Append(Environment.NewLine); | 123 | sb.Append(Environment.NewLine); |
122 | 124 | ||
123 | foreach (LLUUID key in packetQueueStatsReporters.Keys) | 125 | foreach (LLUUID key in packetQueueStatsReporters.Keys) |