aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/SimStatsReporter.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-10-10 22:23:42 +0100
committerJustin Clark-Casey (justincc)2011-10-10 22:23:42 +0100
commit19096bd391ac88bbccda00e4660a061020118bb9 (patch)
treee2a15a9a1b1070ed0b20fafad81d125c372bbe87 /OpenSim/Region/Framework/Scenes/SimStatsReporter.cs
parentProvide a way to turn the MonitorModule on and off (diff)
downloadopensim-SC_OLD-19096bd391ac88bbccda00e4660a061020118bb9.zip
opensim-SC_OLD-19096bd391ac88bbccda00e4660a061020118bb9.tar.gz
opensim-SC_OLD-19096bd391ac88bbccda00e4660a061020118bb9.tar.bz2
opensim-SC_OLD-19096bd391ac88bbccda00e4660a061020118bb9.tar.xz
Convert getLastReportedSimFPS() and getLastReportedSimStats() into more idiomatic LastReportedSimFPS and LastReportedSimStats on SimStatsReporter
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Framework/Scenes/SimStatsReporter.cs26
1 files changed, 13 insertions, 13 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SimStatsReporter.cs b/OpenSim/Region/Framework/Scenes/SimStatsReporter.cs
index ad64b55..b9d38d0 100644
--- a/OpenSim/Region/Framework/Scenes/SimStatsReporter.cs
+++ b/OpenSim/Region/Framework/Scenes/SimStatsReporter.cs
@@ -78,6 +78,19 @@ namespace OpenSim.Region.Framework.Scenes
78 UnAckedBytes = 24, 78 UnAckedBytes = 24,
79 } 79 }
80 80
81 /// <summary>
82 /// This is for llGetRegionFPS
83 /// </summary>
84 public float LastReportedSimFPS
85 {
86 get { return lastReportedSimFPS; }
87 }
88
89 public float[] LastReportedSimStats
90 {
91 get { return lastReportedSimStats; }
92 }
93
81 // Sending a stats update every 3 seconds- 94 // Sending a stats update every 3 seconds-
82 private int statsUpdatesEveryMS = 3000; 95 private int statsUpdatesEveryMS = 3000;
83 private float statsUpdateFactor = 0; 96 private float statsUpdateFactor = 0;
@@ -437,19 +450,6 @@ namespace OpenSim.Region.Framework.Scenes
437 m_activeScripts = count; 450 m_activeScripts = count;
438 } 451 }
439 452
440 /// <summary>
441 /// This is for llGetRegionFPS
442 /// </summary>
443 public float getLastReportedSimFPS()
444 {
445 return lastReportedSimFPS;
446 }
447
448 public float[] getLastReportedSimStats()
449 {
450 return lastReportedSimStats;
451 }
452
453 public void AddPacketsStats(int inPackets, int outPackets, int unAckedBytes) 453 public void AddPacketsStats(int inPackets, int outPackets, int unAckedBytes)
454 { 454 {
455 AddInPackets(inPackets); 455 AddInPackets(inPackets);