diff options
author | Justin Clarke Casey | 2008-06-10 18:10:57 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-06-10 18:10:57 +0000 |
commit | 184a288b4d04a58579d03b2d9518b1b6e0640e80 (patch) | |
tree | 3f7d1628268dae9057c57af5f17384b467ad31f2 /OpenSim/Framework/Statistics/UserStatsCollector.cs | |
parent | Mantis#1501. Thank you kindly, Nebadon, for a patch that (diff) | |
download | opensim-SC-184a288b4d04a58579d03b2d9518b1b6e0640e80.zip opensim-SC-184a288b4d04a58579d03b2d9518b1b6e0640e80.tar.gz opensim-SC-184a288b4d04a58579d03b2d9518b1b6e0640e80.tar.bz2 opensim-SC-184a288b4d04a58579d03b2d9518b1b6e0640e80.tar.xz |
* Add memory currently allocated to OpenSim to 'show stats' statistics
* This is the GC.GetTotalMemory() method, which I'm guessing does not include memory used by the VM (hence the memory usage reported in top on linux would be much higher)
Diffstat (limited to 'OpenSim/Framework/Statistics/UserStatsCollector.cs')
-rw-r--r-- | OpenSim/Framework/Statistics/UserStatsCollector.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Statistics/UserStatsCollector.cs b/OpenSim/Framework/Statistics/UserStatsCollector.cs index c7fe7c2..e094d91 100644 --- a/OpenSim/Framework/Statistics/UserStatsCollector.cs +++ b/OpenSim/Framework/Statistics/UserStatsCollector.cs | |||
@@ -32,7 +32,7 @@ namespace OpenSim.Framework.Statistics | |||
32 | /// <summary> | 32 | /// <summary> |
33 | /// Collects user service statistics | 33 | /// Collects user service statistics |
34 | /// </summary> | 34 | /// </summary> |
35 | public class UserStatsCollector : IStatsCollector | 35 | public class UserStatsCollector : BaseStatsCollector |
36 | { | 36 | { |
37 | private Timer ageStatsTimer = new Timer(24 * 60 * 60 * 1000); | 37 | private Timer ageStatsTimer = new Timer(24 * 60 * 60 * 1000); |
38 | 38 | ||