mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-26 19:05:25 +02:00
Show TBM Queue size
This commit is contained in:
parent
09ae278306
commit
a248a2a732
3 changed files with 4 additions and 1 deletions
|
@ -701,6 +701,7 @@ namespace http {
|
||||||
{
|
{
|
||||||
s << "<b>" << tr("Tunnels") << ":</b><br>\r\n";
|
s << "<b>" << tr("Tunnels") << ":</b><br>\r\n";
|
||||||
s << "<b>" << tr("Queue size") << ":</b> " << i2p::tunnel::tunnels.GetQueueSize () << "<br>\r\n<br>\r\n";
|
s << "<b>" << tr("Queue size") << ":</b> " << i2p::tunnel::tunnels.GetQueueSize () << "<br>\r\n<br>\r\n";
|
||||||
|
s << "<b>" << tr("TBM Queue size") << ":</b> " << i2p::tunnel::tunnels.GetTBMQueueSize () << "<br>\r\n<br>\r\n";
|
||||||
|
|
||||||
auto ExplPool = i2p::tunnel::tunnels.GetExploratoryPool ();
|
auto ExplPool = i2p::tunnel::tunnels.GetExploratoryPool ();
|
||||||
|
|
||||||
|
|
|
@ -149,6 +149,7 @@ namespace tunnel
|
||||||
|
|
||||||
// for HTTP only
|
// for HTTP only
|
||||||
const auto& GetTransitTunnels () const { return m_TransitTunnels; };
|
const auto& GetTransitTunnels () const { return m_TransitTunnels; };
|
||||||
|
size_t GetTunnelBuildMsgQueueSize () const { return m_TunnelBuildMsgQueue.GetSize (); };
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -327,7 +327,8 @@ namespace tunnel
|
||||||
size_t CountInboundTunnels() const;
|
size_t CountInboundTunnels() const;
|
||||||
size_t CountOutboundTunnels() const;
|
size_t CountOutboundTunnels() const;
|
||||||
|
|
||||||
int GetQueueSize () { return m_Queue.GetSize (); };
|
size_t GetQueueSize () const { return m_Queue.GetSize (); };
|
||||||
|
size_t GetTBMQueueSize () const { return m_TransitTunnels.GetTunnelBuildMsgQueueSize (); };
|
||||||
int GetTunnelCreationSuccessRate () const { return std::round(m_TunnelCreationSuccessRate * 100); } // in percents
|
int GetTunnelCreationSuccessRate () const { return std::round(m_TunnelCreationSuccessRate * 100); } // in percents
|
||||||
double GetPreciseTunnelCreationSuccessRate () const { return m_TunnelCreationSuccessRate * 100; } // in percents
|
double GetPreciseTunnelCreationSuccessRate () const { return m_TunnelCreationSuccessRate * 100; } // in percents
|
||||||
int GetTotalTunnelCreationSuccessRate () const // in percents
|
int GetTotalTunnelCreationSuccessRate () const // in percents
|
||||||
|
|
Loading…
Add table
Reference in a new issue