diff options
author | Robert Adams | 2013-02-20 14:11:02 -0800 |
---|---|---|
committer | Robert Adams | 2013-02-20 16:13:51 -0800 |
commit | 681653ca130eaf15c62aae6fd1a7c5276036a0e9 (patch) | |
tree | 23e97348c4ad5911ca9689bcaaa44f50378173a2 /OpenSim/Region | |
parent | Add flush after write feature to LogWriter (diff) | |
download | opensim-SC_OLD-681653ca130eaf15c62aae6fd1a7c5276036a0e9.zip opensim-SC_OLD-681653ca130eaf15c62aae6fd1a7c5276036a0e9.tar.gz opensim-SC_OLD-681653ca130eaf15c62aae6fd1a7c5276036a0e9.tar.bz2 opensim-SC_OLD-681653ca130eaf15c62aae6fd1a7c5276036a0e9.tar.xz |
Add a method to IStatsCollector for returning stats as an OSDMap.
Extend implementors of IStatsCollector to return an OSDMap of stats.
Update UserStatsCollector and AssetStatsCollector to return both
string and OSDMap data (as well as console format).
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index a187190..5675870 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |||
@@ -12138,6 +12138,11 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
12138 | return String.Empty; | 12138 | return String.Empty; |
12139 | } | 12139 | } |
12140 | 12140 | ||
12141 | public OSDMap OReport(string uptime, string version) | ||
12142 | { | ||
12143 | return new OSDMap(); | ||
12144 | } | ||
12145 | |||
12141 | /// <summary> | 12146 | /// <summary> |
12142 | /// Make an asset request to the asset service in response to a client request. | 12147 | /// Make an asset request to the asset service in response to a client request. |
12143 | /// </summary> | 12148 | /// </summary> |