mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-14 08:16:03 +02:00
include inbound queue PPS stats in server stats page
This commit is contained in:
parent
e1570e3197
commit
3718149157
1 changed files with 1 additions and 1 deletions
|
@ -650,7 +650,7 @@ bool OctreeServer::handleHTTPRequest(HTTPConnection* connection, const QUrl& url
|
|||
statsString += QString(" Packets Queue Network IN: %1 PPS \r\n")
|
||||
.arg(locale.toString(incomingPPS, 'f', FLOAT_PRECISION).rightJustified(COLUMN_WIDTH, ' '));
|
||||
statsString += QString(" Packets Queue Processing OUT: %1 PPS \r\n")
|
||||
.arg(locale.toString(incomingPPS, 'f', FLOAT_PRECISION).rightJustified(COLUMN_WIDTH, ' '));
|
||||
.arg(locale.toString(processedPPS, 'f', FLOAT_PRECISION).rightJustified(COLUMN_WIDTH, ' '));
|
||||
|
||||
statsString += QString(" Total Inbound Packets: %1 packets\r\n")
|
||||
.arg(locale.toString((uint)totalPacketsProcessed).rightJustified(COLUMN_WIDTH, ' '));
|
||||
|
|
Loading…
Reference in a new issue