mirror of
https://github.com/overte-org/overte.git
synced 2025-04-15 09:49:41 +02:00
fix Queue OUT stat
This commit is contained in:
parent
2ae62de84e
commit
b7c40c2df1
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ bool ReceivedPacketProcessor::process() {
|
|||
float incomingPacketsPerSecondInWindow = (float)_lastWindowIncomingPackets / secondsSinceLastWindow;
|
||||
_incomingPPS.updateAverage(incomingPacketsPerSecondInWindow);
|
||||
|
||||
float processedPacketsPerSecondInWindow = (float)_lastWindowIncomingPackets / secondsSinceLastWindow;
|
||||
float processedPacketsPerSecondInWindow = (float)_lastWindowProcessedPackets / secondsSinceLastWindow;
|
||||
_processedPPS.updateAverage(processedPacketsPerSecondInWindow);
|
||||
|
||||
_lastWindowAt = now;
|
||||
|
|
Loading…
Reference in a new issue