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>
|
||||
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
|
||||
public float StatisticsFPSfactor { get; private set; }
|
||||
public bool Normalized55FPS { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// 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;
|
||||
FrameTime = 0.0908f;
|
||||
StatisticsFPSfactor = 5.0f;
|
||||
Normalized55FPS = true;
|
||||
MinMaintenanceTime = 1;
|
||||
SeeIntoRegion = true;
|
||||
|
||||
|
@ -1101,7 +1101,7 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
}
|
||||
|
||||
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_coarse_locations = startupConfig.GetInt("UpdateCoarseLocationsEveryNFrames", m_update_coarse_locations);
|
||||
|
@ -1669,6 +1669,7 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
endFrame = Frame + frames;
|
||||
|
||||
float physicsFPS = 0f;
|
||||
float frameTimeMS = FrameTime * 1000.0f;
|
||||
|
||||
int previousFrameTick;
|
||||
|
||||
|
@ -1676,6 +1677,7 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
double tmpMS2;
|
||||
double framestart;
|
||||
float sleepMS;
|
||||
float sleepError = 0;
|
||||
|
||||
while (!m_shuttingDown && ((endFrame == null && Active) || Frame < endFrame))
|
||||
{
|
||||
|
@ -1759,8 +1761,7 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
|
||||
// Delete temp-on-rez stuff
|
||||
if (Frame % m_update_temp_cleaning == 0 && !m_cleaningTemps)
|
||||
{
|
||||
|
||||
{
|
||||
m_cleaningTemps = true;
|
||||
Util.FireAndForget(delegate { CleanTempObjects(); m_cleaningTemps = false; });
|
||||
tmpMS2 = Util.GetTimeStampMS();
|
||||
|
@ -1840,21 +1841,11 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
}
|
||||
|
||||
EventManager.TriggerRegionHeartbeatEnd(this);
|
||||
|
||||
m_firstHeartbeat = false;
|
||||
Watchdog.UpdateThread();
|
||||
|
||||
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();
|
||||
|
||||
previousFrameTick = m_lastFrameTick;
|
||||
|
@ -1862,20 +1853,36 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
|
||||
// estimate sleep time
|
||||
tmpMS2 = tmpMS - framestart;
|
||||
tmpMS2 = (double)FrameTime * 1000.0D - tmpMS2;
|
||||
|
||||
m_firstHeartbeat = false;
|
||||
tmpMS2 = (double)frameTimeMS - tmpMS2 - sleepError;
|
||||
|
||||
// reuse frameMS as temporary
|
||||
frameMS = (float)tmpMS2;
|
||||
|
||||
// sleep if we can
|
||||
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);
|
||||
frameMS = (float)(tmpMS2 - framestart);
|
||||
StatsReporter.addSleepMS(sleepMS);
|
||||
StatsReporter.addFrameMS(frameMS);
|
||||
// script time is not scene frame time, but is displayed per frame
|
||||
float scriptTimeMS = GetAndResetScriptExecutionTime();
|
||||
StatsReporter.AddFrameStats(TimeDilation, physicsFPS, agentMS,
|
||||
physicsMS + physicsMS2, otherMS , sleepMS, frameMS, scriptTimeMS);
|
||||
|
||||
|
||||
|
||||
// if (Frame%m_update_avatars == 0)
|
||||
// UpdateInWorldTime();
|
||||
|
|
|
@ -176,10 +176,13 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
// Sending a stats update every 3 seconds-
|
||||
private int m_statsUpdatesEveryMS = 3000;
|
||||
private double m_lastUpdateTS;
|
||||
private double m_prevFrameStatsTS;
|
||||
private double m_FrameStatsTS;
|
||||
private float m_timeDilation;
|
||||
private int m_fps;
|
||||
|
||||
private object m_statsLock = new object();
|
||||
private object m_statsFrameLock = new object();
|
||||
|
||||
/// <summary>
|
||||
/// 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.
|
||||
/// </remarks>
|
||||
private float m_statisticsFPSfactor = 5.0f;
|
||||
|
||||
private float m_targetFrameTime = 0.1f;
|
||||
// saved last reported value so there is something available for llGetRegionFPS
|
||||
private float lastReportedSimFPS;
|
||||
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_otherMS;
|
||||
private float m_sleeptimeMS;
|
||||
private float m_scriptTimeMS;
|
||||
|
||||
private int m_rootAgents;
|
||||
private int m_childAgents;
|
||||
|
@ -257,7 +261,13 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
m_scene = scene;
|
||||
|
||||
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_report.AutoReset = true;
|
||||
|
@ -266,6 +276,8 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
m_report.Enabled = true;
|
||||
|
||||
m_lastUpdateTS = Util.GetTimeStampMS();
|
||||
m_FrameStatsTS = m_lastUpdateTS;
|
||||
m_prevFrameStatsTS = m_lastUpdateTS;
|
||||
|
||||
if (StatsManager.SimExtraStats != null)
|
||||
OnSendStatsResult += StatsManager.SimExtraStats.ReceiveClassicSimStatsPacket;
|
||||
|
@ -350,28 +362,92 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
#region various statistic googly moogly
|
||||
double timeTmp = m_lastUpdateTS;
|
||||
m_lastUpdateTS = Util.GetTimeStampMS();
|
||||
|
||||
float m_statsUpdateFactor = (float)((m_lastUpdateTS - timeTmp)/1000.0);
|
||||
float updateElapsed = (float)((m_lastUpdateTS - timeTmp)/1000.0);
|
||||
|
||||
// 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 reportedFPS = (m_fps * m_statisticsFPSfactor);
|
||||
float invFrameElapsed;
|
||||
|
||||
// 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)
|
||||
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
|
||||
float perframefactor = 1.0f / (float)reportedFPS;
|
||||
// some engines track frame time with error related to the simulation step size
|
||||
if(physfps > reportedFPS)
|
||||
physfps = reportedFPS;
|
||||
|
||||
// fps considering the integration time
|
||||
reportedFPS = reportedFPS * updateFactor;
|
||||
// save the reported value so there is something available for llGetRegionFPS
|
||||
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
|
||||
|
||||
m_rootAgents = m_scene.SceneGraph.GetRootAgentCount();
|
||||
|
@ -381,44 +457,11 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
m_numMesh = m_scene.SceneGraph.GetTotalMeshObjectsCount();
|
||||
m_activePrim = m_scene.SceneGraph.GetActiveObjectsCount();
|
||||
m_activeScripts = m_scene.SceneGraph.GetActiveScriptsCount();
|
||||
m_scriptLinesPerSecond = m_scene.SceneGraph.GetScriptLPS();
|
||||
|
||||
float physfps = m_pfps * updateFactor * m_statisticsFPSfactor;
|
||||
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
|
||||
// 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.
|
||||
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();
|
||||
CheckStatSanity();
|
||||
|
||||
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].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].StatValue = reportedFPS;
|
||||
sb[1].StatValue = (float)Math.Round(reportedFPS,1);;
|
||||
|
||||
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].StatValue = m_agentUpdates * updateFactor;
|
||||
sb[3].StatValue = m_agentUpdates * updateTimeFactor;
|
||||
|
||||
sb[4].StatID = (uint) Stats.Agents;
|
||||
sb[4].StatValue = m_rootAgents;
|
||||
|
@ -450,31 +493,31 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
sb[7].StatValue = m_activePrim;
|
||||
|
||||
sb[8].StatID = (uint)Stats.FrameMS;
|
||||
sb[8].StatValue = TotalFrameTime;
|
||||
sb[8].StatValue = totalFrameTime;
|
||||
|
||||
sb[9].StatID = (uint)Stats.NetMS;
|
||||
sb[9].StatValue = m_netMS * perframefactor;
|
||||
|
||||
sb[10].StatID = (uint)Stats.PhysicsMS;
|
||||
sb[10].StatValue = m_physicsMS * perframefactor;
|
||||
sb[10].StatValue = physicsMS;
|
||||
|
||||
sb[11].StatID = (uint)Stats.ImageMS ;
|
||||
sb[11].StatValue = m_imageMS * perframefactor;
|
||||
|
||||
sb[12].StatID = (uint)Stats.OtherMS;
|
||||
sb[12].StatValue = m_otherMS * perframefactor;
|
||||
sb[12].StatValue = otherMS;
|
||||
|
||||
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].StatValue = (m_outPacketsPerSecond * updateFactor);
|
||||
sb[14].StatValue = (float)Math.Round(m_outPacketsPerSecond * updateTimeFactor);
|
||||
|
||||
sb[15].StatID = (uint)Stats.UnAckedBytes;
|
||||
sb[15].StatValue = m_unAckedBytes;
|
||||
|
||||
sb[16].StatID = (uint)Stats.AgentMS;
|
||||
sb[16].StatValue = m_agentMS * perframefactor;
|
||||
sb[16].StatValue = agentMS;
|
||||
|
||||
sb[17].StatID = (uint)Stats.PendingDownloads;
|
||||
sb[17].StatValue = m_pendingDownloads;
|
||||
|
@ -514,7 +557,7 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
sb[27].StatValue = 0;
|
||||
|
||||
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].StatValue = 0;
|
||||
|
@ -541,8 +584,7 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
sb[36].StatValue = 0;
|
||||
|
||||
sb[37].StatID = (uint)Stats.ScriptMS;
|
||||
sb[37].StatValue = scriptTimeMS * perframefactor;
|
||||
|
||||
sb[37].StatValue = scriptTimeMS;
|
||||
|
||||
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].StatValue = m_scriptLinesPerSecond * updateFactor;
|
||||
lastReportedSimStats[38] = m_scriptLinesPerSecond * updateFactor;
|
||||
sbex[0].StatValue = m_scriptLinesPerSecond * updateTimeFactor;
|
||||
lastReportedSimStats[38] = m_scriptLinesPerSecond * updateTimeFactor;
|
||||
|
||||
sbex[1].StatID = (uint)Stats.FrameDilation2;
|
||||
sbex[1].StatValue = (Single.IsNaN(m_timeDilation)) ? 0.1f : m_timeDilation;
|
||||
lastReportedSimStats[39] = (Single.IsNaN(m_timeDilation)) ? 0.1f : m_timeDilation;
|
||||
sbex[1].StatValue = (Single.IsNaN(timeDilation)) ? 0.1f : timeDilation;
|
||||
lastReportedSimStats[39] = (Single.IsNaN(timeDilation)) ? 0.1f : timeDilation;
|
||||
|
||||
sbex[2].StatID = (uint)Stats.UsersLoggingIn;
|
||||
sbex[2].StatValue = m_usersLoggingIn;
|
||||
|
@ -597,7 +639,7 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
{
|
||||
lock (m_lastReportedExtraSimStats)
|
||||
{
|
||||
m_lastReportedExtraSimStats[LastReportedObjectUpdateStatName] = m_objectUpdates * updateFactor;
|
||||
m_lastReportedExtraSimStats[LastReportedObjectUpdateStatName] = m_objectUpdates * updateTimeFactor;
|
||||
m_lastReportedExtraSimStats[SlowFramesStat.ShortName] = (float)SlowFramesStat.Value;
|
||||
|
||||
Dictionary<string, float> physicsStats = m_scene.PhysicsScene.GetStats();
|
||||
|
@ -612,7 +654,7 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
if (tuple.Key.EndsWith("MS"))
|
||||
m_lastReportedExtraSimStats[tuple.Key] = tuple.Value * perframefactor;
|
||||
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()
|
||||
{
|
||||
// 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_objectUpdates = 0;
|
||||
//m_inPacketsPerSecond = 0;
|
||||
//m_outPacketsPerSecond = 0;
|
||||
m_unAckedBytes = 0;
|
||||
m_scriptLinesPerSecond = 0;
|
||||
m_scriptEventsPerSecond = 0;
|
||||
|
||||
m_frameMS = 0;
|
||||
m_agentMS = 0;
|
||||
m_netMS = 0;
|
||||
m_physicsMS = 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()
|
||||
{
|
||||
|
@ -684,14 +694,44 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
}
|
||||
}
|
||||
|
||||
public void AddFPS(int frames)
|
||||
{
|
||||
m_fps += frames;
|
||||
}
|
||||
# region methods called from Scene
|
||||
|
||||
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)
|
||||
|
@ -720,46 +760,17 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
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)
|
||||
{
|
||||
m_netMS += ms;
|
||||
}
|
||||
|
||||
public void addAgentMS(float ms)
|
||||
{
|
||||
m_agentMS += ms;
|
||||
}
|
||||
|
||||
public void addPhysicsMS(float ms)
|
||||
{
|
||||
m_physicsMS += ms;
|
||||
}
|
||||
|
||||
public void addImageMS(float 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)
|
||||
{
|
||||
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);
|
||||
}
|
||||
|
||||
public void addScriptLines(int count)
|
||||
{
|
||||
m_scriptLinesPerSecond += count;
|
||||
}
|
||||
|
||||
public void addScriptEvents(int count)
|
||||
{
|
||||
m_scriptEventsPerSecond += count;
|
||||
|
|
|
@ -166,15 +166,15 @@
|
|||
; into a restart.
|
||||
InworldRestartShutsDown = false
|
||||
|
||||
; Statistics scale factor (also known by some as Fudge factor multiplier)
|
||||
; for closer compatibility with viewers, some scripts and users expectations
|
||||
; we tradicionally reported in statistics a normalized value of 55fps when a region runs at the normal rate
|
||||
; of (1 / FrameTime) defined below.
|
||||
; So multiply factor is applied to that rate (ie a divide in frame time or time per frame)
|
||||
; Its value should be 55 * FrameTime.
|
||||
; StatisticsFPSfactor = 5.0
|
||||
; or you can choose to not apply this factor:
|
||||
StatisticsFPSfactor = 1.0
|
||||
; Use of normalized 55FPS statistics
|
||||
; Opensim does not have a frame rate control like other simulators
|
||||
; Most parameters that control timing can be configurable region by region
|
||||
; To achive closer compatibility with values expected by viewers, scripts and users
|
||||
; some parameters are converted to a equivalent per frame value.
|
||||
; Adicionaly they are scaled to values they whould have on a system running at a nominal 55 frames per second rate
|
||||
; The scale factor it 55 * FrameTime, corresponding to 5 with default configuration
|
||||
; You can choose to not apply this scale factor setting Normalized55FPS to false.
|
||||
Normalized55FPS = false
|
||||
|
||||
; Main Frame time
|
||||
; This defines the rate of several simulation events.
|
||||
|
|
Loading…
Reference in New Issue