aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-11-16 04:36:22 +0000
committerJustin Clark-Casey (justincc)2012-11-16 04:36:22 +0000
commitcd088757e96217defc9a2b0bf323747615c3255e (patch)
treed8cd8e5236d69d912362a06f45f3bf6cf4aea5ac /OpenSim/Region/ClientStack
parentrefactor: move common inventory folder version update code to parent class in... (diff)
downloadopensim-SC_OLD-cd088757e96217defc9a2b0bf323747615c3255e.zip
opensim-SC_OLD-cd088757e96217defc9a2b0bf323747615c3255e.tar.gz
opensim-SC_OLD-cd088757e96217defc9a2b0bf323747615c3255e.tar.bz2
opensim-SC_OLD-cd088757e96217defc9a2b0bf323747615c3255e.tar.xz
Add a first draft mechanism for the IncomingPacketsProcessedStat to show the delta over time.
The chief motivation for this is to be able to tell whether there's any impact on incoming packet processing from enabling extra packet pooling.
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
index fcc69c0..a7628d2 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
@@ -80,6 +80,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
80 "clientstack", 80 "clientstack",
81 scene.Name, 81 scene.Name,
82 StatType.Pull, 82 StatType.Pull,
83 MeasuresOfInterest.AverageChangeOverTime,
83 stat => stat.Value = m_udpServer.IncomingPacketsProcessed, 84 stat => stat.Value = m_udpServer.IncomingPacketsProcessed,
84 StatVerbosity.Debug)); 85 StatVerbosity.Debug));
85 } 86 }