diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 1d41522b..e4a6b854 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -985,6 +985,7 @@ bool View::DrawConnection() ImGui::SameLine(); ImGui::PlotLines( buf, mbpsVector.data(), mbpsVector.size(), 0, nullptr, 0, std::numeric_limits::max(), ImVec2( 150, 0 ) ); ImGui::Text( "Ratio %.1f%% Real: %6.2f Mbps", m_worker.GetCompRatio() * 100.f, mbps / m_worker.GetCompRatio() ); + ImGui::Text( "Query backlog: %s", RealToString( m_worker.GetSendQueueSize(), true ) ); } ImGui::Text( "Memory usage: %s", MemSizeToString( memUsage.load( std::memory_order_relaxed ) ) );