diff options
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/RegionStatsHandler.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/RegionStatsHandler.cs | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/OpenSim/Region/Framework/Scenes/RegionStatsHandler.cs b/OpenSim/Region/Framework/Scenes/RegionStatsHandler.cs index f521490..4ef5221 100644 --- a/OpenSim/Region/Framework/Scenes/RegionStatsHandler.cs +++ b/OpenSim/Region/Framework/Scenes/RegionStatsHandler.cs | |||
@@ -53,16 +53,15 @@ namespace OpenSim.Region.Framework.Scenes | |||
53 | 53 | ||
54 | 54 | ||
55 | public class RegionStatsHandler : IStreamedRequestHandler | 55 | public class RegionStatsHandler : IStreamedRequestHandler |
56 | { | 56 | { |
57 | |||
58 | private string osRXStatsURI = String.Empty; | 57 | private string osRXStatsURI = String.Empty; |
59 | private string osXStatsURI = String.Empty; | 58 | private string osXStatsURI = String.Empty; |
60 | private string osSecret = String.Empty; | 59 | //private string osSecret = String.Empty; |
61 | private OpenSim.Framework.RegionInfo regionInfo; | 60 | private OpenSim.Framework.RegionInfo regionInfo; |
62 | public string localZone = TimeZone.CurrentTimeZone.StandardName; | 61 | public string localZone = TimeZone.CurrentTimeZone.StandardName; |
63 | public TimeSpan utcOffset = TimeZone.CurrentTimeZone.GetUtcOffset(DateTime.Now); | 62 | public TimeSpan utcOffset = TimeZone.CurrentTimeZone.GetUtcOffset(DateTime.Now); |
64 | 63 | ||
65 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 64 | //private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
66 | 65 | ||
67 | public RegionStatsHandler(OpenSim.Framework.RegionInfo region_info ) | 66 | public RegionStatsHandler(OpenSim.Framework.RegionInfo region_info ) |
68 | { | 67 | { |
@@ -94,10 +93,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
94 | } | 93 | } |
95 | 94 | ||
96 | private string Report() | 95 | private string Report() |
97 | { | 96 | { |
98 | |||
99 | OSDMap args = new OSDMap(30); | 97 | OSDMap args = new OSDMap(30); |
100 | int time = Util.ToUnixTime( DateTime.Now ); | 98 | //int time = Util.ToUnixTime( DateTime.Now ); |
101 | args["OSStatsURI"] = OSD.FromString("http://" + regionInfo.ExternalHostName + ":" + regionInfo.HttpPort + "/" + osXStatsURI + "/"); | 99 | args["OSStatsURI"] = OSD.FromString("http://" + regionInfo.ExternalHostName + ":" + regionInfo.HttpPort + "/" + osXStatsURI + "/"); |
102 | args["TimeZoneName"] = OSD.FromString(localZone); | 100 | args["TimeZoneName"] = OSD.FromString(localZone); |
103 | args["TimeZoneOffs"] = OSD.FromReal(utcOffset.TotalHours); | 101 | args["TimeZoneOffs"] = OSD.FromReal(utcOffset.TotalHours); |