replace StatisticsFPSfactor that needed to be changed with FrameTime to a simpler true or false Normalized55FPS that is now TRUE by default. Incorrectly this commit also contains changes that should had their own commits: changes to heartbeat time control ant to gathering and calculation of related statistics.
parent
3dc16b74af
commit
d17633f6c0
|
@ -361,9 +361,9 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
public float FrameTime { get; private set; }
|
public float FrameTime { get; private set; }
|
||||||
|
|
||||||
// statistics frame scale factor for viewer and scripts.
|
// Normalize the frame related stats to nominal 55fps for viewer and scripts option
|
||||||
// see SimStatsReporter.cs
|
// see SimStatsReporter.cs
|
||||||
public float StatisticsFPSfactor { get; private set; }
|
public bool Normalized55FPS { get; private set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The minimum length of time in seconds that will be taken for a scene frame.
|
/// The minimum length of time in seconds that will be taken for a scene frame.
|
||||||
|
@ -860,7 +860,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
{
|
{
|
||||||
m_config = config;
|
m_config = config;
|
||||||
FrameTime = 0.0908f;
|
FrameTime = 0.0908f;
|
||||||
StatisticsFPSfactor = 5.0f;
|
Normalized55FPS = true;
|
||||||
MinMaintenanceTime = 1;
|
MinMaintenanceTime = 1;
|
||||||
SeeIntoRegion = true;
|
SeeIntoRegion = true;
|
||||||
|
|
||||||
|
@ -1101,7 +1101,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
}
|
}
|
||||||
|
|
||||||
FrameTime = startupConfig.GetFloat( "FrameTime", FrameTime);
|
FrameTime = startupConfig.GetFloat( "FrameTime", FrameTime);
|
||||||
StatisticsFPSfactor = startupConfig.GetFloat( "StatisticsFPSfactor", StatisticsFPSfactor);
|
Normalized55FPS = startupConfig.GetBoolean( "Normalized55FPS", Normalized55FPS);
|
||||||
|
|
||||||
m_update_backup = startupConfig.GetInt("UpdateStorageEveryNFrames", m_update_backup);
|
m_update_backup = startupConfig.GetInt("UpdateStorageEveryNFrames", m_update_backup);
|
||||||
m_update_coarse_locations = startupConfig.GetInt("UpdateCoarseLocationsEveryNFrames", m_update_coarse_locations);
|
m_update_coarse_locations = startupConfig.GetInt("UpdateCoarseLocationsEveryNFrames", m_update_coarse_locations);
|
||||||
|
@ -1669,6 +1669,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
endFrame = Frame + frames;
|
endFrame = Frame + frames;
|
||||||
|
|
||||||
float physicsFPS = 0f;
|
float physicsFPS = 0f;
|
||||||
|
float frameTimeMS = FrameTime * 1000.0f;
|
||||||
|
|
||||||
int previousFrameTick;
|
int previousFrameTick;
|
||||||
|
|
||||||
|
@ -1676,6 +1677,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
double tmpMS2;
|
double tmpMS2;
|
||||||
double framestart;
|
double framestart;
|
||||||
float sleepMS;
|
float sleepMS;
|
||||||
|
float sleepError = 0;
|
||||||
|
|
||||||
while (!m_shuttingDown && ((endFrame == null && Active) || Frame < endFrame))
|
while (!m_shuttingDown && ((endFrame == null && Active) || Frame < endFrame))
|
||||||
{
|
{
|
||||||
|
@ -1759,8 +1761,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
|
|
||||||
// Delete temp-on-rez stuff
|
// Delete temp-on-rez stuff
|
||||||
if (Frame % m_update_temp_cleaning == 0 && !m_cleaningTemps)
|
if (Frame % m_update_temp_cleaning == 0 && !m_cleaningTemps)
|
||||||
{
|
{
|
||||||
|
|
||||||
m_cleaningTemps = true;
|
m_cleaningTemps = true;
|
||||||
Util.FireAndForget(delegate { CleanTempObjects(); m_cleaningTemps = false; });
|
Util.FireAndForget(delegate { CleanTempObjects(); m_cleaningTemps = false; });
|
||||||
tmpMS2 = Util.GetTimeStampMS();
|
tmpMS2 = Util.GetTimeStampMS();
|
||||||
|
@ -1840,21 +1841,11 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
}
|
}
|
||||||
|
|
||||||
EventManager.TriggerRegionHeartbeatEnd(this);
|
EventManager.TriggerRegionHeartbeatEnd(this);
|
||||||
|
m_firstHeartbeat = false;
|
||||||
Watchdog.UpdateThread();
|
Watchdog.UpdateThread();
|
||||||
|
|
||||||
otherMS = tempOnRezMS + eventMS + backupMS + terrainMS + landMS;
|
otherMS = tempOnRezMS + eventMS + backupMS + terrainMS + landMS;
|
||||||
|
|
||||||
StatsReporter.AddPhysicsFPS(physicsFPS);
|
|
||||||
StatsReporter.AddTimeDilation(TimeDilation);
|
|
||||||
StatsReporter.AddFPS(1);
|
|
||||||
|
|
||||||
StatsReporter.addAgentMS(agentMS);
|
|
||||||
StatsReporter.addPhysicsMS(physicsMS + physicsMS2);
|
|
||||||
StatsReporter.addOtherMS(otherMS);
|
|
||||||
StatsReporter.addScriptLines(m_sceneGraph.GetScriptLPS());
|
|
||||||
|
|
||||||
|
|
||||||
tmpMS = Util.GetTimeStampMS();
|
tmpMS = Util.GetTimeStampMS();
|
||||||
|
|
||||||
previousFrameTick = m_lastFrameTick;
|
previousFrameTick = m_lastFrameTick;
|
||||||
|
@ -1862,20 +1853,36 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
|
|
||||||
// estimate sleep time
|
// estimate sleep time
|
||||||
tmpMS2 = tmpMS - framestart;
|
tmpMS2 = tmpMS - framestart;
|
||||||
tmpMS2 = (double)FrameTime * 1000.0D - tmpMS2;
|
tmpMS2 = (double)frameTimeMS - tmpMS2 - sleepError;
|
||||||
|
|
||||||
m_firstHeartbeat = false;
|
|
||||||
|
|
||||||
|
// reuse frameMS as temporary
|
||||||
|
frameMS = (float)tmpMS2;
|
||||||
|
|
||||||
// sleep if we can
|
// sleep if we can
|
||||||
if (tmpMS2 > 0)
|
if (tmpMS2 > 0)
|
||||||
Thread.Sleep((int)(tmpMS2 +0.5));
|
{
|
||||||
|
Thread.Sleep((int)(tmpMS2 + 0.5));
|
||||||
|
|
||||||
tmpMS2 = Util.GetTimeStampMS();
|
tmpMS2 = Util.GetTimeStampMS();
|
||||||
|
sleepMS = (float)(tmpMS2 - tmpMS);
|
||||||
|
sleepError = sleepMS - frameMS;
|
||||||
|
Util.Clamp(sleepError, 0.0f, 20f);
|
||||||
|
frameMS = (float)(tmpMS2 - framestart);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
tmpMS2 = Util.GetTimeStampMS();
|
||||||
|
frameMS = (float)(tmpMS2 - framestart);
|
||||||
|
sleepMS = 0.0f;
|
||||||
|
sleepError = 0.0f;
|
||||||
|
}
|
||||||
|
|
||||||
sleepMS = (float)(tmpMS2 - tmpMS);
|
// script time is not scene frame time, but is displayed per frame
|
||||||
frameMS = (float)(tmpMS2 - framestart);
|
float scriptTimeMS = GetAndResetScriptExecutionTime();
|
||||||
StatsReporter.addSleepMS(sleepMS);
|
StatsReporter.AddFrameStats(TimeDilation, physicsFPS, agentMS,
|
||||||
StatsReporter.addFrameMS(frameMS);
|
physicsMS + physicsMS2, otherMS , sleepMS, frameMS, scriptTimeMS);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// if (Frame%m_update_avatars == 0)
|
// if (Frame%m_update_avatars == 0)
|
||||||
// UpdateInWorldTime();
|
// UpdateInWorldTime();
|
||||||
|
|
|
@ -176,10 +176,13 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
// Sending a stats update every 3 seconds-
|
// Sending a stats update every 3 seconds-
|
||||||
private int m_statsUpdatesEveryMS = 3000;
|
private int m_statsUpdatesEveryMS = 3000;
|
||||||
private double m_lastUpdateTS;
|
private double m_lastUpdateTS;
|
||||||
|
private double m_prevFrameStatsTS;
|
||||||
|
private double m_FrameStatsTS;
|
||||||
private float m_timeDilation;
|
private float m_timeDilation;
|
||||||
private int m_fps;
|
private int m_fps;
|
||||||
|
|
||||||
private object m_statsLock = new object();
|
private object m_statsLock = new object();
|
||||||
|
private object m_statsFrameLock = new object();
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Parameter to adjust reported scene fps
|
/// Parameter to adjust reported scene fps
|
||||||
|
@ -195,7 +198,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
/// corresponding, with default heartbeat rate, to a value of 5.
|
/// corresponding, with default heartbeat rate, to a value of 5.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
private float m_statisticsFPSfactor = 5.0f;
|
private float m_statisticsFPSfactor = 5.0f;
|
||||||
|
private float m_targetFrameTime = 0.1f;
|
||||||
// saved last reported value so there is something available for llGetRegionFPS
|
// saved last reported value so there is something available for llGetRegionFPS
|
||||||
private float lastReportedSimFPS;
|
private float lastReportedSimFPS;
|
||||||
private float[] lastReportedSimStats = new float[m_statisticExtraArraySize + m_statisticViewerArraySize];
|
private float[] lastReportedSimStats = new float[m_statisticExtraArraySize + m_statisticViewerArraySize];
|
||||||
|
@ -219,6 +222,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
private float m_imageMS;
|
private float m_imageMS;
|
||||||
private float m_otherMS;
|
private float m_otherMS;
|
||||||
private float m_sleeptimeMS;
|
private float m_sleeptimeMS;
|
||||||
|
private float m_scriptTimeMS;
|
||||||
|
|
||||||
private int m_rootAgents;
|
private int m_rootAgents;
|
||||||
private int m_childAgents;
|
private int m_childAgents;
|
||||||
|
@ -257,7 +261,13 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
m_scene = scene;
|
m_scene = scene;
|
||||||
|
|
||||||
ReportingRegion = scene.RegionInfo;
|
ReportingRegion = scene.RegionInfo;
|
||||||
m_statisticsFPSfactor = scene.StatisticsFPSfactor;
|
|
||||||
|
if(scene.Normalized55FPS)
|
||||||
|
m_statisticsFPSfactor = 55.0f * m_scene.FrameTime;
|
||||||
|
else
|
||||||
|
m_statisticsFPSfactor = 1.0f;
|
||||||
|
|
||||||
|
m_targetFrameTime = 1000.0f * m_scene.FrameTime / m_statisticsFPSfactor;
|
||||||
|
|
||||||
m_objectCapacity = scene.RegionInfo.ObjectCapacity;
|
m_objectCapacity = scene.RegionInfo.ObjectCapacity;
|
||||||
m_report.AutoReset = true;
|
m_report.AutoReset = true;
|
||||||
|
@ -266,6 +276,8 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
m_report.Enabled = true;
|
m_report.Enabled = true;
|
||||||
|
|
||||||
m_lastUpdateTS = Util.GetTimeStampMS();
|
m_lastUpdateTS = Util.GetTimeStampMS();
|
||||||
|
m_FrameStatsTS = m_lastUpdateTS;
|
||||||
|
m_prevFrameStatsTS = m_lastUpdateTS;
|
||||||
|
|
||||||
if (StatsManager.SimExtraStats != null)
|
if (StatsManager.SimExtraStats != null)
|
||||||
OnSendStatsResult += StatsManager.SimExtraStats.ReceiveClassicSimStatsPacket;
|
OnSendStatsResult += StatsManager.SimExtraStats.ReceiveClassicSimStatsPacket;
|
||||||
|
@ -350,28 +362,92 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
#region various statistic googly moogly
|
#region various statistic googly moogly
|
||||||
double timeTmp = m_lastUpdateTS;
|
double timeTmp = m_lastUpdateTS;
|
||||||
m_lastUpdateTS = Util.GetTimeStampMS();
|
m_lastUpdateTS = Util.GetTimeStampMS();
|
||||||
|
float updateElapsed = (float)((m_lastUpdateTS - timeTmp)/1000.0);
|
||||||
float m_statsUpdateFactor = (float)((m_lastUpdateTS - timeTmp)/1000.0);
|
|
||||||
|
|
||||||
// factor to consider updates integration time
|
// factor to consider updates integration time
|
||||||
float updateFactor = 1.0f / m_statsUpdateFactor;
|
float updateTimeFactor = 1.0f / updateElapsed;
|
||||||
|
|
||||||
// the nominal frame time, corrected by reporting multiplier
|
|
||||||
float TargetFrameTime = 1000.0f * m_scene.FrameTime / m_statisticsFPSfactor;
|
// scene frame stats
|
||||||
|
float reportedFPS;
|
||||||
|
float physfps;
|
||||||
|
float timeDilation;
|
||||||
|
float agentMS;
|
||||||
|
float physicsMS;
|
||||||
|
float otherMS;
|
||||||
|
float sleeptime;
|
||||||
|
float scriptTimeMS;
|
||||||
|
float totalFrameTime;
|
||||||
|
|
||||||
// acumulated fps scaled by reporting multiplier
|
float invFrameElapsed;
|
||||||
float reportedFPS = (m_fps * m_statisticsFPSfactor);
|
|
||||||
|
// get a copy under lock and reset
|
||||||
|
lock(m_statsFrameLock)
|
||||||
|
{
|
||||||
|
timeDilation = m_timeDilation;
|
||||||
|
reportedFPS = m_fps;
|
||||||
|
physfps = m_pfps;
|
||||||
|
agentMS = m_agentMS;
|
||||||
|
physicsMS = m_physicsMS;
|
||||||
|
otherMS = m_otherMS;
|
||||||
|
sleeptime = m_sleeptimeMS;
|
||||||
|
scriptTimeMS = m_scriptTimeMS;
|
||||||
|
totalFrameTime = m_frameMS;
|
||||||
|
// still not inv
|
||||||
|
invFrameElapsed = (float)((m_FrameStatsTS - m_prevFrameStatsTS) / 1000.0);
|
||||||
|
|
||||||
|
ResetFrameStats();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (invFrameElapsed / updateElapsed < 0.8)
|
||||||
|
// scene is in trouble, its account of time is most likely wrong
|
||||||
|
// can even be in stall
|
||||||
|
invFrameElapsed = updateTimeFactor;
|
||||||
|
else
|
||||||
|
invFrameElapsed = 1.0f / invFrameElapsed;
|
||||||
|
|
||||||
|
float perframefactor;
|
||||||
if (reportedFPS <= 0)
|
if (reportedFPS <= 0)
|
||||||
reportedFPS = 1;
|
{
|
||||||
|
reportedFPS = 0.0f;
|
||||||
|
physfps = 0.0f;
|
||||||
|
perframefactor = 1.0f;
|
||||||
|
timeDilation = 0.0f;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
timeDilation /= reportedFPS;
|
||||||
|
reportedFPS *= m_statisticsFPSfactor;
|
||||||
|
perframefactor = 1.0f / (float)reportedFPS;
|
||||||
|
reportedFPS *= invFrameElapsed;
|
||||||
|
physfps *= invFrameElapsed * m_statisticsFPSfactor;
|
||||||
|
}
|
||||||
|
|
||||||
// factor to calculate per frame values
|
// some engines track frame time with error related to the simulation step size
|
||||||
float perframefactor = 1.0f / (float)reportedFPS;
|
if(physfps > reportedFPS)
|
||||||
|
physfps = reportedFPS;
|
||||||
|
|
||||||
// fps considering the integration time
|
|
||||||
reportedFPS = reportedFPS * updateFactor;
|
|
||||||
// save the reported value so there is something available for llGetRegionFPS
|
// save the reported value so there is something available for llGetRegionFPS
|
||||||
lastReportedSimFPS = reportedFPS;
|
lastReportedSimFPS = reportedFPS;
|
||||||
|
|
||||||
|
// scale frame stats
|
||||||
|
|
||||||
|
totalFrameTime *= perframefactor;
|
||||||
|
sleeptime *= perframefactor;
|
||||||
|
otherMS *= perframefactor;
|
||||||
|
physicsMS *= perframefactor;
|
||||||
|
agentMS *= perframefactor;
|
||||||
|
scriptTimeMS *= perframefactor;
|
||||||
|
|
||||||
|
// estimate spare time
|
||||||
|
float sparetime;
|
||||||
|
sparetime = m_targetFrameTime - (physicsMS + agentMS + otherMS);
|
||||||
|
|
||||||
|
if (sparetime < 0)
|
||||||
|
sparetime = 0;
|
||||||
|
else if (sparetime > totalFrameTime)
|
||||||
|
sparetime = totalFrameTime;
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
m_rootAgents = m_scene.SceneGraph.GetRootAgentCount();
|
m_rootAgents = m_scene.SceneGraph.GetRootAgentCount();
|
||||||
|
@ -381,44 +457,11 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
m_numMesh = m_scene.SceneGraph.GetTotalMeshObjectsCount();
|
m_numMesh = m_scene.SceneGraph.GetTotalMeshObjectsCount();
|
||||||
m_activePrim = m_scene.SceneGraph.GetActiveObjectsCount();
|
m_activePrim = m_scene.SceneGraph.GetActiveObjectsCount();
|
||||||
m_activeScripts = m_scene.SceneGraph.GetActiveScriptsCount();
|
m_activeScripts = m_scene.SceneGraph.GetActiveScriptsCount();
|
||||||
|
m_scriptLinesPerSecond = m_scene.SceneGraph.GetScriptLPS();
|
||||||
|
|
||||||
float physfps = m_pfps * updateFactor * m_statisticsFPSfactor;
|
// FIXME: Checking for stat sanity is a complex approach. What we really need to do is fix the code
|
||||||
if (physfps < 0)
|
|
||||||
physfps = 0;
|
|
||||||
else if(physfps > reportedFPS)
|
|
||||||
physfps = reportedFPS; // pretend we are not insane
|
|
||||||
|
|
||||||
float sparetime;
|
|
||||||
float sleeptime;
|
|
||||||
|
|
||||||
float TotalFrameTime = m_frameMS * perframefactor;
|
|
||||||
sleeptime = m_sleeptimeMS * perframefactor;
|
|
||||||
|
|
||||||
sparetime = m_frameMS - m_sleeptimeMS; // total time minus sleep
|
|
||||||
sparetime *= perframefactor; // average per frame
|
|
||||||
sparetime = TargetFrameTime - sparetime; // real spare
|
|
||||||
if (sparetime < 0)
|
|
||||||
sparetime = 0;
|
|
||||||
else if (sparetime > TotalFrameTime)
|
|
||||||
sparetime = TotalFrameTime;
|
|
||||||
|
|
||||||
// don't send meaning less precision
|
|
||||||
reportedFPS = (float)Math.Round(reportedFPS,1);
|
|
||||||
physfps = (float)Math.Round(physfps,1);
|
|
||||||
|
|
||||||
// FIXME: Checking for stat sanity is a complex approach. What we really need to do is fix the code
|
|
||||||
// so that stat numbers are always consistent.
|
// so that stat numbers are always consistent.
|
||||||
CheckStatSanity();
|
CheckStatSanity();
|
||||||
|
|
||||||
// other MS is actually simulation time
|
|
||||||
// m_otherMS = m_frameMS - m_physicsMS - m_imageMS - m_netMS - m_agentMS;
|
|
||||||
// m_imageMS m_netMS are not included in m_frameMS
|
|
||||||
|
|
||||||
m_otherMS = m_frameMS - m_physicsMS - m_agentMS - m_sleeptimeMS;
|
|
||||||
if (m_otherMS < 0)
|
|
||||||
m_otherMS = 0;
|
|
||||||
|
|
||||||
float scriptTimeMS = m_scene.GetAndResetScriptExecutionTime();
|
|
||||||
|
|
||||||
for (int i = 0; i < m_statisticViewerArraySize; i++)
|
for (int i = 0; i < m_statisticViewerArraySize; i++)
|
||||||
{
|
{
|
||||||
|
@ -426,16 +469,16 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
}
|
}
|
||||||
|
|
||||||
sb[0].StatID = (uint) Stats.TimeDilation;
|
sb[0].StatID = (uint) Stats.TimeDilation;
|
||||||
sb[0].StatValue = (Single.IsNaN(m_timeDilation)) ? 0.1f : m_timeDilation ;
|
sb[0].StatValue = (Single.IsNaN(timeDilation)) ? 0.0f : (float)Math.Round(timeDilation,3);
|
||||||
|
|
||||||
sb[1].StatID = (uint) Stats.SimFPS;
|
sb[1].StatID = (uint) Stats.SimFPS;
|
||||||
sb[1].StatValue = reportedFPS;
|
sb[1].StatValue = (float)Math.Round(reportedFPS,1);;
|
||||||
|
|
||||||
sb[2].StatID = (uint) Stats.PhysicsFPS;
|
sb[2].StatID = (uint) Stats.PhysicsFPS;
|
||||||
sb[2].StatValue = physfps;
|
sb[2].StatValue = (float)Math.Round(physfps,1);
|
||||||
|
|
||||||
sb[3].StatID = (uint) Stats.AgentUpdates;
|
sb[3].StatID = (uint) Stats.AgentUpdates;
|
||||||
sb[3].StatValue = m_agentUpdates * updateFactor;
|
sb[3].StatValue = m_agentUpdates * updateTimeFactor;
|
||||||
|
|
||||||
sb[4].StatID = (uint) Stats.Agents;
|
sb[4].StatID = (uint) Stats.Agents;
|
||||||
sb[4].StatValue = m_rootAgents;
|
sb[4].StatValue = m_rootAgents;
|
||||||
|
@ -450,31 +493,31 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
sb[7].StatValue = m_activePrim;
|
sb[7].StatValue = m_activePrim;
|
||||||
|
|
||||||
sb[8].StatID = (uint)Stats.FrameMS;
|
sb[8].StatID = (uint)Stats.FrameMS;
|
||||||
sb[8].StatValue = TotalFrameTime;
|
sb[8].StatValue = totalFrameTime;
|
||||||
|
|
||||||
sb[9].StatID = (uint)Stats.NetMS;
|
sb[9].StatID = (uint)Stats.NetMS;
|
||||||
sb[9].StatValue = m_netMS * perframefactor;
|
sb[9].StatValue = m_netMS * perframefactor;
|
||||||
|
|
||||||
sb[10].StatID = (uint)Stats.PhysicsMS;
|
sb[10].StatID = (uint)Stats.PhysicsMS;
|
||||||
sb[10].StatValue = m_physicsMS * perframefactor;
|
sb[10].StatValue = physicsMS;
|
||||||
|
|
||||||
sb[11].StatID = (uint)Stats.ImageMS ;
|
sb[11].StatID = (uint)Stats.ImageMS ;
|
||||||
sb[11].StatValue = m_imageMS * perframefactor;
|
sb[11].StatValue = m_imageMS * perframefactor;
|
||||||
|
|
||||||
sb[12].StatID = (uint)Stats.OtherMS;
|
sb[12].StatID = (uint)Stats.OtherMS;
|
||||||
sb[12].StatValue = m_otherMS * perframefactor;
|
sb[12].StatValue = otherMS;
|
||||||
|
|
||||||
sb[13].StatID = (uint)Stats.InPacketsPerSecond;
|
sb[13].StatID = (uint)Stats.InPacketsPerSecond;
|
||||||
sb[13].StatValue = (m_inPacketsPerSecond * updateFactor);
|
sb[13].StatValue = (float)Math.Round(m_inPacketsPerSecond * updateTimeFactor);
|
||||||
|
|
||||||
sb[14].StatID = (uint)Stats.OutPacketsPerSecond;
|
sb[14].StatID = (uint)Stats.OutPacketsPerSecond;
|
||||||
sb[14].StatValue = (m_outPacketsPerSecond * updateFactor);
|
sb[14].StatValue = (float)Math.Round(m_outPacketsPerSecond * updateTimeFactor);
|
||||||
|
|
||||||
sb[15].StatID = (uint)Stats.UnAckedBytes;
|
sb[15].StatID = (uint)Stats.UnAckedBytes;
|
||||||
sb[15].StatValue = m_unAckedBytes;
|
sb[15].StatValue = m_unAckedBytes;
|
||||||
|
|
||||||
sb[16].StatID = (uint)Stats.AgentMS;
|
sb[16].StatID = (uint)Stats.AgentMS;
|
||||||
sb[16].StatValue = m_agentMS * perframefactor;
|
sb[16].StatValue = agentMS;
|
||||||
|
|
||||||
sb[17].StatID = (uint)Stats.PendingDownloads;
|
sb[17].StatID = (uint)Stats.PendingDownloads;
|
||||||
sb[17].StatValue = m_pendingDownloads;
|
sb[17].StatValue = m_pendingDownloads;
|
||||||
|
@ -514,7 +557,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
sb[27].StatValue = 0;
|
sb[27].StatValue = 0;
|
||||||
|
|
||||||
sb[28].StatID = (uint)Stats.ScriptEps; // we actuall have this, but not messing array order AGAIN
|
sb[28].StatID = (uint)Stats.ScriptEps; // we actuall have this, but not messing array order AGAIN
|
||||||
sb[28].StatValue = m_scriptEventsPerSecond * updateFactor;
|
sb[28].StatValue = (float)Math.Round(m_scriptEventsPerSecond * updateTimeFactor);
|
||||||
|
|
||||||
sb[29].StatID = (uint)Stats.SimAIStepTimeMS;
|
sb[29].StatID = (uint)Stats.SimAIStepTimeMS;
|
||||||
sb[29].StatValue = 0;
|
sb[29].StatValue = 0;
|
||||||
|
@ -541,8 +584,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
sb[36].StatValue = 0;
|
sb[36].StatValue = 0;
|
||||||
|
|
||||||
sb[37].StatID = (uint)Stats.ScriptMS;
|
sb[37].StatID = (uint)Stats.ScriptMS;
|
||||||
sb[37].StatValue = scriptTimeMS * perframefactor;
|
sb[37].StatValue = scriptTimeMS;
|
||||||
|
|
||||||
|
|
||||||
for (int i = 0; i < m_statisticViewerArraySize; i++)
|
for (int i = 0; i < m_statisticViewerArraySize; i++)
|
||||||
{
|
{
|
||||||
|
@ -558,12 +600,12 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
}
|
}
|
||||||
|
|
||||||
sbex[0].StatID = (uint)Stats.LSLScriptLinesPerSecond;
|
sbex[0].StatID = (uint)Stats.LSLScriptLinesPerSecond;
|
||||||
sbex[0].StatValue = m_scriptLinesPerSecond * updateFactor;
|
sbex[0].StatValue = m_scriptLinesPerSecond * updateTimeFactor;
|
||||||
lastReportedSimStats[38] = m_scriptLinesPerSecond * updateFactor;
|
lastReportedSimStats[38] = m_scriptLinesPerSecond * updateTimeFactor;
|
||||||
|
|
||||||
sbex[1].StatID = (uint)Stats.FrameDilation2;
|
sbex[1].StatID = (uint)Stats.FrameDilation2;
|
||||||
sbex[1].StatValue = (Single.IsNaN(m_timeDilation)) ? 0.1f : m_timeDilation;
|
sbex[1].StatValue = (Single.IsNaN(timeDilation)) ? 0.1f : timeDilation;
|
||||||
lastReportedSimStats[39] = (Single.IsNaN(m_timeDilation)) ? 0.1f : m_timeDilation;
|
lastReportedSimStats[39] = (Single.IsNaN(timeDilation)) ? 0.1f : timeDilation;
|
||||||
|
|
||||||
sbex[2].StatID = (uint)Stats.UsersLoggingIn;
|
sbex[2].StatID = (uint)Stats.UsersLoggingIn;
|
||||||
sbex[2].StatValue = m_usersLoggingIn;
|
sbex[2].StatValue = m_usersLoggingIn;
|
||||||
|
@ -597,7 +639,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
{
|
{
|
||||||
lock (m_lastReportedExtraSimStats)
|
lock (m_lastReportedExtraSimStats)
|
||||||
{
|
{
|
||||||
m_lastReportedExtraSimStats[LastReportedObjectUpdateStatName] = m_objectUpdates * updateFactor;
|
m_lastReportedExtraSimStats[LastReportedObjectUpdateStatName] = m_objectUpdates * updateTimeFactor;
|
||||||
m_lastReportedExtraSimStats[SlowFramesStat.ShortName] = (float)SlowFramesStat.Value;
|
m_lastReportedExtraSimStats[SlowFramesStat.ShortName] = (float)SlowFramesStat.Value;
|
||||||
|
|
||||||
Dictionary<string, float> physicsStats = m_scene.PhysicsScene.GetStats();
|
Dictionary<string, float> physicsStats = m_scene.PhysicsScene.GetStats();
|
||||||
|
@ -612,7 +654,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
if (tuple.Key.EndsWith("MS"))
|
if (tuple.Key.EndsWith("MS"))
|
||||||
m_lastReportedExtraSimStats[tuple.Key] = tuple.Value * perframefactor;
|
m_lastReportedExtraSimStats[tuple.Key] = tuple.Value * perframefactor;
|
||||||
else
|
else
|
||||||
m_lastReportedExtraSimStats[tuple.Key] = tuple.Value * updateFactor;
|
m_lastReportedExtraSimStats[tuple.Key] = tuple.Value * updateTimeFactor;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -626,47 +668,15 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
|
|
||||||
private void ResetValues()
|
private void ResetValues()
|
||||||
{
|
{
|
||||||
// Reset the number of frames that the physics library has
|
|
||||||
// processed since the last stats report
|
|
||||||
|
|
||||||
m_timeDilation = 0;
|
|
||||||
m_fps = 0;
|
|
||||||
m_pfps = 0;
|
|
||||||
m_agentUpdates = 0;
|
m_agentUpdates = 0;
|
||||||
m_objectUpdates = 0;
|
m_objectUpdates = 0;
|
||||||
//m_inPacketsPerSecond = 0;
|
|
||||||
//m_outPacketsPerSecond = 0;
|
|
||||||
m_unAckedBytes = 0;
|
m_unAckedBytes = 0;
|
||||||
m_scriptLinesPerSecond = 0;
|
|
||||||
m_scriptEventsPerSecond = 0;
|
m_scriptEventsPerSecond = 0;
|
||||||
|
|
||||||
m_frameMS = 0;
|
|
||||||
m_agentMS = 0;
|
|
||||||
m_netMS = 0;
|
m_netMS = 0;
|
||||||
m_physicsMS = 0;
|
|
||||||
m_imageMS = 0;
|
m_imageMS = 0;
|
||||||
m_otherMS = 0;
|
|
||||||
m_sleeptimeMS = 0;
|
|
||||||
|
|
||||||
//Ckrinke This variable is not used, so comment to remove compiler warning until it is used.
|
|
||||||
//Ckrinke m_scriptMS = 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# region methods called from Scene
|
|
||||||
// The majority of these functions are additive
|
|
||||||
// so that you can easily change the amount of
|
|
||||||
// seconds in between sim stats updates
|
|
||||||
|
|
||||||
public void AddTimeDilation(float td)
|
|
||||||
{
|
|
||||||
//float tdsetting = td;
|
|
||||||
//if (tdsetting > 1.0f)
|
|
||||||
//tdsetting = (tdsetting - (tdsetting - 0.91f));
|
|
||||||
|
|
||||||
//if (tdsetting < 0)
|
|
||||||
//tdsetting = 0.0f;
|
|
||||||
m_timeDilation = td;
|
|
||||||
}
|
|
||||||
|
|
||||||
internal void CheckStatSanity()
|
internal void CheckStatSanity()
|
||||||
{
|
{
|
||||||
|
@ -684,14 +694,44 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void AddFPS(int frames)
|
# region methods called from Scene
|
||||||
{
|
|
||||||
m_fps += frames;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void AddPhysicsFPS(float frames)
|
public void AddFrameStats(float _timeDilation, float _physicsFPS, float _agentMS,
|
||||||
|
float _physicsMS, float _otherMS , float _sleepMS,
|
||||||
|
float _frameMS, float _scriptTimeMS)
|
||||||
{
|
{
|
||||||
m_pfps += frames;
|
lock(m_statsFrameLock)
|
||||||
|
{
|
||||||
|
m_fps++;
|
||||||
|
m_timeDilation += _timeDilation;
|
||||||
|
m_pfps += _physicsFPS;
|
||||||
|
m_agentMS += _agentMS;
|
||||||
|
m_physicsMS += _physicsMS;
|
||||||
|
m_otherMS += _otherMS;
|
||||||
|
m_sleeptimeMS += _sleepMS;
|
||||||
|
m_frameMS += _frameMS;
|
||||||
|
m_scriptTimeMS += _scriptTimeMS;
|
||||||
|
|
||||||
|
if (_frameMS > SlowFramesStatReportThreshold)
|
||||||
|
SlowFramesStat.Value++;
|
||||||
|
|
||||||
|
m_FrameStatsTS = Util.GetTimeStampMS();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void ResetFrameStats()
|
||||||
|
{
|
||||||
|
m_fps = 0;
|
||||||
|
m_timeDilation = 0.0f;
|
||||||
|
m_pfps = 0.0f;
|
||||||
|
m_agentMS = 0.0f;
|
||||||
|
m_physicsMS = 0.0f;
|
||||||
|
m_otherMS = 0.0f;
|
||||||
|
m_sleeptimeMS = 0.0f;
|
||||||
|
m_frameMS = 0.0f;
|
||||||
|
m_scriptTimeMS = 0.0f;
|
||||||
|
|
||||||
|
m_prevFrameStatsTS = m_FrameStatsTS;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void AddObjectUpdates(int numUpdates)
|
public void AddObjectUpdates(int numUpdates)
|
||||||
|
@ -720,46 +760,17 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
if (m_unAckedBytes < 0) m_unAckedBytes = 0;
|
if (m_unAckedBytes < 0) m_unAckedBytes = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void addFrameMS(float ms)
|
|
||||||
{
|
|
||||||
m_frameMS += ms;
|
|
||||||
|
|
||||||
// At the moment, we'll only report if a frame is over 120% of target, since commonly frames are a bit
|
|
||||||
// longer than ideal due to the inaccuracy of the Sleep in Scene.Update() (which in itself is a concern).
|
|
||||||
if (ms > SlowFramesStatReportThreshold)
|
|
||||||
SlowFramesStat.Value++;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void addNetMS(float ms)
|
public void addNetMS(float ms)
|
||||||
{
|
{
|
||||||
m_netMS += ms;
|
m_netMS += ms;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void addAgentMS(float ms)
|
|
||||||
{
|
|
||||||
m_agentMS += ms;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void addPhysicsMS(float ms)
|
|
||||||
{
|
|
||||||
m_physicsMS += ms;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void addImageMS(float ms)
|
public void addImageMS(float ms)
|
||||||
{
|
{
|
||||||
m_imageMS += ms;
|
m_imageMS += ms;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void addOtherMS(float ms)
|
|
||||||
{
|
|
||||||
m_otherMS += ms;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void addSleepMS(float ms)
|
|
||||||
{
|
|
||||||
m_sleeptimeMS += ms;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void AddPendingDownloads(int count)
|
public void AddPendingDownloads(int count)
|
||||||
{
|
{
|
||||||
m_pendingDownloads += count;
|
m_pendingDownloads += count;
|
||||||
|
@ -770,11 +781,6 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
//m_log.InfoFormat("[stats]: Adding {0} to pending downloads to make {1}", count, m_pendingDownloads);
|
//m_log.InfoFormat("[stats]: Adding {0} to pending downloads to make {1}", count, m_pendingDownloads);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void addScriptLines(int count)
|
|
||||||
{
|
|
||||||
m_scriptLinesPerSecond += count;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void addScriptEvents(int count)
|
public void addScriptEvents(int count)
|
||||||
{
|
{
|
||||||
m_scriptEventsPerSecond += count;
|
m_scriptEventsPerSecond += count;
|
||||||
|
|
|
@ -166,15 +166,15 @@
|
||||||
; into a restart.
|
; into a restart.
|
||||||
InworldRestartShutsDown = false
|
InworldRestartShutsDown = false
|
||||||
|
|
||||||
; Statistics scale factor (also known by some as Fudge factor multiplier)
|
; Use of normalized 55FPS statistics
|
||||||
; for closer compatibility with viewers, some scripts and users expectations
|
; Opensim does not have a frame rate control like other simulators
|
||||||
; we tradicionally reported in statistics a normalized value of 55fps when a region runs at the normal rate
|
; Most parameters that control timing can be configurable region by region
|
||||||
; of (1 / FrameTime) defined below.
|
; To achive closer compatibility with values expected by viewers, scripts and users
|
||||||
; So multiply factor is applied to that rate (ie a divide in frame time or time per frame)
|
; some parameters are converted to a equivalent per frame value.
|
||||||
; Its value should be 55 * FrameTime.
|
; Adicionaly they are scaled to values they whould have on a system running at a nominal 55 frames per second rate
|
||||||
; StatisticsFPSfactor = 5.0
|
; The scale factor it 55 * FrameTime, corresponding to 5 with default configuration
|
||||||
; or you can choose to not apply this factor:
|
; You can choose to not apply this scale factor setting Normalized55FPS to false.
|
||||||
StatisticsFPSfactor = 1.0
|
Normalized55FPS = false
|
||||||
|
|
||||||
; Main Frame time
|
; Main Frame time
|
||||||
; This defines the rate of several simulation events.
|
; This defines the rate of several simulation events.
|
||||||
|
|
Loading…
Reference in New Issue