diff options
author | Justin Clark-Casey (justincc) | 2012-07-25 23:11:50 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-07-25 23:11:50 +0100 |
commit | 35efa88c26d249d315837fdca0faf643511e1a4e (patch) | |
tree | 00227cb097196ca172ed9639c536e4934326e89f /OpenSim/Framework/Statistics/StatsManager.cs | |
parent | Add MemoryWatchdog class missing from git master a1e9964 (diff) | |
download | opensim-SC-35efa88c26d249d315837fdca0faf643511e1a4e.zip opensim-SC-35efa88c26d249d315837fdca0faf643511e1a4e.tar.gz opensim-SC-35efa88c26d249d315837fdca0faf643511e1a4e.tar.bz2 opensim-SC-35efa88c26d249d315837fdca0faf643511e1a4e.tar.xz |
Rename OpenSim.Framework.Statistics to OpenSim.Framework.Monitoring.
This better reflects the long-term purpose of that project and matches Monitoring modules.
Diffstat (limited to 'OpenSim/Framework/Statistics/StatsManager.cs')
-rw-r--r-- | OpenSim/Framework/Statistics/StatsManager.cs | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/OpenSim/Framework/Statistics/StatsManager.cs b/OpenSim/Framework/Statistics/StatsManager.cs deleted file mode 100644 index 436ce2f..0000000 --- a/OpenSim/Framework/Statistics/StatsManager.cs +++ /dev/null | |||
@@ -1,65 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://opensimulator.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSimulator Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | */ | ||
27 | |||
28 | namespace OpenSim.Framework.Statistics | ||
29 | { | ||
30 | /// <summary> | ||
31 | /// Singleton used to provide access to statistics reporters | ||
32 | /// </summary> | ||
33 | public class StatsManager | ||
34 | { | ||
35 | private static AssetStatsCollector assetStats; | ||
36 | private static UserStatsCollector userStats; | ||
37 | private static SimExtraStatsCollector simExtraStats = new SimExtraStatsCollector(); | ||
38 | |||
39 | public static AssetStatsCollector AssetStats { get { return assetStats; } } | ||
40 | public static UserStatsCollector UserStats { get { return userStats; } } | ||
41 | public static SimExtraStatsCollector SimExtraStats { get { return simExtraStats; } } | ||
42 | |||
43 | /// <summary> | ||
44 | /// Start collecting statistics related to assets. | ||
45 | /// Should only be called once. | ||
46 | /// </summary> | ||
47 | public static AssetStatsCollector StartCollectingAssetStats() | ||
48 | { | ||
49 | assetStats = new AssetStatsCollector(); | ||
50 | |||
51 | return assetStats; | ||
52 | } | ||
53 | |||
54 | /// <summary> | ||
55 | /// Start collecting statistics related to users. | ||
56 | /// Should only be called once. | ||
57 | /// </summary> | ||
58 | public static UserStatsCollector StartCollectingUserStats() | ||
59 | { | ||
60 | userStats = new UserStatsCollector(); | ||
61 | |||
62 | return userStats; | ||
63 | } | ||
64 | } | ||
65 | } \ No newline at end of file | ||