aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/SimStatsReporter.cs
diff options
context:
space:
mode:
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);