diff options
author | Justin Clarke Casey | 2008-06-04 16:30:44 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-06-04 16:30:44 +0000 |
commit | 6e2f3bd3fb88f41803376428bbffdd6aa67940c0 (patch) | |
tree | 52e6ab8fa86c8acdcac78f91e96fc777f030b74a /OpenSim/Framework | |
parent | * Added a check for a non-finite heightfield array value passed to the ODEPlu... (diff) | |
download | opensim-SC_OLD-6e2f3bd3fb88f41803376428bbffdd6aa67940c0.zip opensim-SC_OLD-6e2f3bd3fb88f41803376428bbffdd6aa67940c0.tar.gz opensim-SC_OLD-6e2f3bd3fb88f41803376428bbffdd6aa67940c0.tar.bz2 opensim-SC_OLD-6e2f3bd3fb88f41803376428bbffdd6aa67940c0.tar.xz |
* Start recording abnormal client thread terminations
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Statistics/SimExtraStatsCollector.cs | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/OpenSim/Framework/Statistics/SimExtraStatsCollector.cs b/OpenSim/Framework/Statistics/SimExtraStatsCollector.cs index 2e7278b..ca3fd4b 100644 --- a/OpenSim/Framework/Statistics/SimExtraStatsCollector.cs +++ b/OpenSim/Framework/Statistics/SimExtraStatsCollector.cs | |||
@@ -37,7 +37,9 @@ namespace OpenSim.Framework.Statistics | |||
37 | /// Collects sim statistics which aren't already being collected for the linden viewer's statistics pane | 37 | /// Collects sim statistics which aren't already being collected for the linden viewer's statistics pane |
38 | /// </summary> | 38 | /// </summary> |
39 | public class SimExtraStatsCollector : IStatsCollector | 39 | public class SimExtraStatsCollector : IStatsCollector |
40 | { | 40 | { |
41 | private long abnormalClientThreadTerminations; | ||
42 | |||
41 | private long assetsInCache; | 43 | private long assetsInCache; |
42 | private long texturesInCache; | 44 | private long texturesInCache; |
43 | private long assetCacheMemoryUsage; | 45 | private long assetCacheMemoryUsage; |
@@ -45,6 +47,11 @@ namespace OpenSim.Framework.Statistics | |||
45 | private long blockedMissingTextureRequests; | 47 | private long blockedMissingTextureRequests; |
46 | 48 | ||
47 | private long inventoryServiceRetrievalFailures; | 49 | private long inventoryServiceRetrievalFailures; |
50 | |||
51 | /// <summary> | ||
52 | /// Number of times that a client thread terminated because of an exception | ||
53 | /// </summary> | ||
54 | public long AbnormalClientThreadTerminations { get { return abnormalClientThreadTerminations; } } | ||
48 | 55 | ||
49 | public long AssetsInCache { get { return assetsInCache; } } | 56 | public long AssetsInCache { get { return assetsInCache; } } |
50 | public long TexturesInCache { get { return texturesInCache; } } | 57 | public long TexturesInCache { get { return texturesInCache; } } |
@@ -71,6 +78,11 @@ namespace OpenSim.Framework.Statistics | |||
71 | /// </summary> | 78 | /// </summary> |
72 | private IDictionary<LLUUID, PacketQueueStatsCollector> packetQueueStatsCollectors | 79 | private IDictionary<LLUUID, PacketQueueStatsCollector> packetQueueStatsCollectors |
73 | = new Dictionary<LLUUID, PacketQueueStatsCollector>(); | 80 | = new Dictionary<LLUUID, PacketQueueStatsCollector>(); |
81 | |||
82 | public void AddAbnormalClientThreadTermination() | ||
83 | { | ||
84 | abnormalClientThreadTerminations++; | ||
85 | } | ||
74 | 86 | ||
75 | public void AddAsset(AssetBase asset) | 87 | public void AddAsset(AssetBase asset) |
76 | { | 88 | { |
@@ -147,6 +159,14 @@ namespace OpenSim.Framework.Statistics | |||
147 | Blocked requests for missing textures: {2}" + Environment.NewLine, | 159 | Blocked requests for missing textures: {2}" + Environment.NewLine, |
148 | TexturesInCache, TextureCacheMemoryUsage / 1024.0, | 160 | TexturesInCache, TextureCacheMemoryUsage / 1024.0, |
149 | BlockedMissingTextureRequests)); | 161 | BlockedMissingTextureRequests)); |
162 | |||
163 | sb.Append(Environment.NewLine); | ||
164 | sb.Append("CONNECTION STATISTICS"); | ||
165 | sb.Append(Environment.NewLine); | ||
166 | sb.Append( | ||
167 | string.Format( | ||
168 | "Abnormal client thread terminations: {0}" + Environment.NewLine, | ||
169 | abnormalClientThreadTerminations)); | ||
150 | 170 | ||
151 | sb.Append(Environment.NewLine); | 171 | sb.Append(Environment.NewLine); |
152 | sb.Append("INVENTORY STATISTICS"); | 172 | sb.Append("INVENTORY STATISTICS"); |