UM .NET API
6.16.1
|
UM context immediate message source transport statistics. More...
Public Member Functions | |
LBMImmediateMessageSourceStatistics () | |
Instantiate an empty object containing no statistics. More... | |
unsafe | LBMImmediateMessageSourceStatistics (LBMContext lbmctx, int maxStats) |
Instantiate object containing the aggregate set of statistics for a particular context. More... | |
void | Dispose () |
Free memory associated with this set of statistics. | |
void | dispose () |
Free memory associated with this set of statistics (same as Dispose()). More... | |
unsafe void | refresh (LBMContext lbmctx, int maxStats) |
Refresh the aggregate set of statistics for a particular context. More... | |
int | size () |
Number of statistical sets encapsulated within this object. More... | |
int | type () |
Transport type (TCP, LBT-RM, etc.) More... | |
int | type (int n) |
Transport type (TCP, LBT-RM, etc.) More... | |
string | typeName () |
Transport type name (TCP, LBT-RM, etc.). More... | |
string | typeName (int n) |
Transport type name (TCP, LBT-RM, etc.). More... | |
string | source () |
Source of transport as a string. More... | |
string | source (int n) |
Source of transport as a string. More... | |
long | numberOfClients () |
Number of receiver clients currently connected over this transport (TCP only). More... | |
long | numberOfClients (int n) |
Number of receiver clients currently connected over this transport (TCP only). More... | |
long | bytesBuffered () |
Number of bytes currently in UM's TCP buffer (TCP only) More... | |
long | bytesBuffered (int n) |
Number of bytes currently in UM's TCP buffer (TCP only) More... | |
long | messagesSent () |
Number of datagrams sent (LBT-RM only). More... | |
long | messagesSent (int n) |
Number of datagrams sent (LBT-RM only). More... | |
long | bytesSent () |
Number of datagram bytes sent (LBT-RM only). More... | |
long | bytesSent (int n) |
Number of datagram bytes sent (LBT-RM only). More... | |
long | transmissionWindowMessages () |
Number of datagrams in the transmission window (LBT-RM only). More... | |
long | transmissionWindowMessages (int n) |
Number of datagrams in the transmission window (LBT-RM only). More... | |
long | transmissionWindowBytes () |
Number of bytes currently in the transmission window (LBT-RM only) More... | |
long | transmissionWindowBytes (int n) |
Number of bytes currently in the transmission window (LBT-RM only) More... | |
long | nakPacketsReceived () |
Number of NAK packets received by this source transport (LBT-RM only). More... | |
long | nakPacketsReceived (int n) |
Number of NAK packets received by this source transport (LBT-RM only). More... | |
long | naksReceived () |
Number of individual NAKs received by the source transport (LBT-RM only). More... | |
long | naksReceived (int n) |
Number of individual NAKs received by the source transport (LBT-RM only). More... | |
long | naksIgnored () |
Number of NAKs this source transport ignored and sent an NCF with reason code "ignored" (LBT-RM only). More... | |
long | naksIgnored (int n) |
Number of NAKs this source transport ignored and sent an NCF with reason code "ignored" (LBT-RM only). More... | |
long | naksShed () |
Number of NAKs this source transport has shed and sent an NCF with reason code "shed" (LBT-RM only). More... | |
long | naksShed (int n) |
Number of NAKs this source transport has shed and sent an NCF with reason code "shed" (LBT-RM only). More... | |
long | naksIgnoredRetransmitDelay () |
Number of NAKs this source transport has not processed because it met its retransmission rate limit (LBT-RM only). More... | |
long | naksIgnoredRetransmitDelay (int n) |
Number of NAKs this source transport has not processed because it met its retransmission rate limit (LBT-RM only). More... | |
long | retransmissionsSent () |
Number of datagrams retransmitted by this source transport (LBT-RM only). More... | |
long | retransmissionsSent (int n) |
Number of datagrams retransmitted by this source (LBT-RM only). More... | |
long | messagesQueued () |
Number of datagrams currently queued by the rate limiter (LBT-RM only). More... | |
long | messagesQueued (int n) |
Number of datagrams currently queued by the rate limiter (LBT-RM only). More... | |
long | retransmissionsQueued () |
Number of retransmission datagrams currently queued by the retransmit rate limiter (LBT-RM only). More... | |
long | retransmissionsQueued (int n) |
Number of retransmission datagrams currently queued by the retransmit rate limiter (LBT-RM only). More... | |
long | retransmissionBytesSent () |
Total number of bytes retransmitted by this source transport (LBT-RM only). More... | |
long | retransmissionBytesSent (int n) |
Total number of bytes retransmitted by this source transport (LBT-RM only). More... | |
string | getApplicationSourceId () |
Retrieve the application source identifier associated with this set of statistics. More... | |
IPAddress | getSender () |
Retrieve the IP sender address associated with this set of statistics. More... | |
DateTime | getTimestamp () |
Retrieve the timestamp associated with this set of statistics. More... | |
long | getProcessId () |
Retrieve the sender process ID associated with this set of statistics. More... | |
long | getContextId () |
Retrieve the sender context ID associated with this set of statistics. More... | |
long | getObjectId () |
Retrieve the sender object ID associated with this set of statistics. More... | |
long | getSource () |
Retrieve the source attribute from the statistics attribute block associated with this set of statistics. More... | |
UM context immediate message source transport statistics.
This object provides user monitoring with access to statistics of an application being monitored. The user monitoring code can be part of the application being monitored (i.e. the application can be "self-monitoring"), or the monitoring code can be remote, using the lbmmon infrastructure to deliver statistics. Note that when stats are sampled, the fields in the structure are not necessarily from the same instant in time. The structure might be updated concurrently with it being sampled, and while each structure field is atomically read, the field values can be skewed slightly across time.
com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.LBMImmediateMessageSourceStatistics | ( | ) |
Instantiate an empty object containing no statistics.
unsafe com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.LBMImmediateMessageSourceStatistics | ( | LBMContext | lbmctx, |
int | maxStats | ||
) |
Instantiate object containing the aggregate set of statistics for a particular context.
This constructor will throw LBMEInvalException if maxStats is less than the the available number of transport statistical sets.
lbmctx | LBMContext object associated with statistics to be retrieved |
maxStats | Maximum number of statistical sets to retrieve |
long com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.bytesBuffered | ( | ) |
Number of bytes currently in UM's TCP buffer (TCP only)
This count is affected by the number of receivers,and configuration options transport_tcp_multiple_receiver_behavior and transport_session_maximum_buffer. This method returns a value from the first set of statistics encapsulated within this object.
long com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.bytesBuffered | ( | int | n | ) |
Number of bytes currently in UM's TCP buffer (TCP only)
This count is affected by the number of receivers,and configuration options transport_tcp_multiple_receiver_behavior and transport_session_maximum_buffer. This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
long com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.bytesSent | ( | ) |
Number of datagram bytes sent (LBT-RM only).
Includes the total length of all LBT-RM packets, including UM header information. This method returns a value from the first set of statistics encapsulated within this object.
long com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.bytesSent | ( | int | n | ) |
Number of datagram bytes sent (LBT-RM only).
Includes the total length of all LBT-RM packets, including UM header information. This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
void com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.dispose | ( | ) |
Free memory associated with this set of statistics (same as Dispose()).
Referenced by com.latencybusters.lbm.LBMObjectRecycler.close().
|
inherited |
Retrieve the application source identifier associated with this set of statistics.
This attribute is only set for remote statistics returned by the lbmmon infrastructure. For locally-gathered statistics, this method returns an undefined value.
|
inherited |
Retrieve the sender context ID associated with this set of statistics.
This attribute is only set for remote statistics returned by the lbmmon infrastructure. For locally-gathered statistics, this method returns an undefined value.
|
inherited |
Retrieve the sender object ID associated with this set of statistics.
This attribute is only set for remote statistics returned by the lbmmon infrastructure. For locally-gathered statistics, this method returns an undefined value.
|
inherited |
Retrieve the sender process ID associated with this set of statistics.
This attribute is only set for remote statistics returned by the lbmmon infrastructure. For locally-gathered statistics, this method returns an undefined value.
|
inherited |
Retrieve the IP sender address associated with this set of statistics.
This attribute is only set for remote statistics returned by the lbmmon infrastructure. For locally-gathered statistics, this method returns an undefined value.
|
inherited |
Retrieve the source attribute from the statistics attribute block associated with this set of statistics.
This attribute is only set for remote statistics returned by the lbmmon infrastructure. For locally-gathered statistics, this method returns an undefined value. Compare return value to LBMMonitor.ATTR_SOURCE_NORMAL and LBMMonitor.ATTR_SOURCE_IM.
|
inherited |
Retrieve the timestamp associated with this set of statistics.
This attribute is only set for remote statistics returned by the lbmmon infrastructure. For locally-gathered statistics, this method returns an undefined value.
long com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.messagesQueued | ( | ) |
Number of datagrams currently queued by the rate limiter (LBT-RM only).
When a source transport attempts to send messages (any type) faster than its data rate limiter allows (set by configuration option transport_lbtrm_data_rate_limit, default 10Mbps), the data rate limiter queues the messages until they can be sent within the data rate limit. This method returns a value from the first set of statistics encapsulated within this object.
long com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.messagesQueued | ( | int | n | ) |
Number of datagrams currently queued by the rate limiter (LBT-RM only).
When a source transport attempts to send messages (any type) faster than its data rate limiter allows (set by configuration option transport_lbtrm_data_rate_limit, default 10Mbps), the data rate limiter queues the messages until they can be sent within the data rate limit. This method returns a value from the first set of statistics encapsulated within this object and would normally be used when the object has been created using a specific source to instantiate the class.
n | Statistics set index |
long com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.messagesSent | ( | ) |
Number of datagrams sent (LBT-RM only).
Depending on batching settings, a single datagram may contain one or more messages, or a fragment of a larger message. With LBT-RM, larger messages are split into fragment sizes limited by configuration option transport_lbtrm_datagram_max_size (default 8KB). This method returns a value from the first set of statistics encapsulated within this object.
long com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.messagesSent | ( | int | n | ) |
Number of datagrams sent (LBT-RM only).
Depending on batching settings, a single datagram may contain one or more messages, or a fragment of a larger message. With LBT-RM, larger messages are split into fragment sizes limited by configuration option transport_lbtrm_datagram_max_size (default 8KB). This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
long com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.nakPacketsReceived | ( | ) |
Number of NAK packets received by this source transport (LBT-RM only).
UM batches NAKs into NAK packets to save network bandwidth. This should always be less than or equal to naksReceived (below). This method returns a value from the first set of statistics encapsulated within this object.
long com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.nakPacketsReceived | ( | int | n | ) |
Number of NAK packets received by this source transport (LBT-RM only).
UM batches NAKs into NAK packets to save network bandwidth. This should always be less than or equal to naksReceived (below). This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
long com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.naksIgnored | ( | ) |
Number of NAKs this source transport ignored and sent an NCF with reason code "ignored" (LBT-RM only).
A source transport ignores a NAK for a datagram it has already recently retransmitted. How "recently" is determined by the configuration option source transport_lbtrm_ignore_interval (default 500ms). If this count is high, a receiver transport may be having trouble receiving retransmissions, or the ignore interval may be set too long. This method returns a value from the first set of statistics encapsulated within this object.
long com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.naksIgnored | ( | int | n | ) |
Number of NAKs this source transport ignored and sent an NCF with reason code "ignored" (LBT-RM only).
A source transport ignores a NAK for a datagram it has already recently retransmitted. How "recently" is determined by the configuration option source transport_lbtrm_ignore_interval (default 500ms). If this count is high, a receiver transport may be having trouble receiving retransmissions, or the ignore interval may be set too long. This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
long com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.naksIgnoredRetransmitDelay | ( | ) |
Number of NAKs this source transport has not processed because it met its retransmission rate limit (LBT-RM only).
This rate limit is set by configuration option transport_lbtrm_retransmit_rate_limit (default 5Mbps). For each of these NAKs, the source transport immediately sends an NFC rx_delay, then queues the retransmission for a later send within the rate limit. If this count is high, one or more crybaby receiver transports may be clogging the source transport's retransmit queue. This method returns a value from the first set of statistics encapsulated within this object.
long com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.naksIgnoredRetransmitDelay | ( | int | n | ) |
Number of NAKs this source transport has not processed because it met its retransmission rate limit (LBT-RM only).
This rate limit is controlled by the transport's retransmit_rate_limit, default 5 Mbps. The source queues the retransmission and sends an NCF with the reason code set to "rx_delay". If naksIgnoredRetransmitDelay is high, one or more crybaby receivers may be clogging the source's retransmission queue. This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
long com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.naksReceived | ( | ) |
Number of individual NAKs received by the source transport (LBT-RM only).
When a source transport receives a NAK from a receiver transport, it may respond by re-transmitting the requested LBT-RM datagram, or it may send an NCF. The NAKing receiver transport responds to the NCF by waiting (timeout set by transport_lbtrm_nak_suppress_interval, default 1000 ms), then re-sending the NAK. This method returns a value from the first set of statistics encapsulated within this object.
long com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.naksReceived | ( | int | n | ) |
Number of individual NAKs received by the source transport (LBT-RM only).
When a source transport receives a NAK from a receiver transport, it may respond by re-transmitting the requested LBT-RM datagram, or it may send an NCF. The NAKing receiver transport responds to the NCF by waiting (timeout set by transport_lbtrm_nak_suppress_interval, default 1000 ms), then re-sending the NAK. This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
long com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.naksShed | ( | ) |
Number of NAKs this source transport has shed and sent an NCF with reason code "shed" (LBT-RM only).
When a source transport's retransmit rate limiter and retransmit queue are both at maximum, it responds to a NAK by sending an "NCF shed", and does not retransmit. The receiver transport should wait, then send another NAK. If this count is high, one or more crybaby receiver transports may be clogging the source transport's retransmit queue. This method returns a value from the first set of statistics encapsulated within this object.
long com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.naksShed | ( | int | n | ) |
Number of NAKs this source transport has shed and sent an NCF with reason code "shed" (LBT-RM only).
When a source transport's retransmit rate limiter and retransmit queue are both at maximum, it responds to a NAK by sending an "NCF shed", and does not retransmit. The receiver transport should wait, then send another NAK. If this count is high, one or more crybaby receiver transports may be clogging the source transport's retransmit queue. This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
long com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.numberOfClients | ( | ) |
Number of receiver clients currently connected over this transport (TCP only).
This method returns a value from the first set of statistics encapsulated within this object
long com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.numberOfClients | ( | int | n | ) |
Number of receiver clients currently connected over this transport (TCP only).
This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
unsafe void com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.refresh | ( | LBMContext | lbmctx, |
int | maxStats | ||
) |
Refresh the aggregate set of statistics for a particular context.
lbmctx | LBMContext object associated with statistics to be retrieved |
maxStats | Maximum number of statistical sets to retrieve |
com.latencybusters.lbm.LBMException | Invalid argument or unexpected operational behavior has been encountered by unmanaged UM C layer function. |
References com.latencybusters.lbm.LBM.EINVAL, com.latencybusters.lbm.LBM.EOP, com.latencybusters.lbm.LBM.errorMessage(), com.latencybusters.lbm.LBM.errorNumber(), com.latencybusters.lbm.LBM.TRANSPORT_STAT_LBTRM, com.latencybusters.lbm.LBM.TRANSPORT_STAT_LBTRU, and com.latencybusters.lbm.LBM.TRANSPORT_STAT_TCP.
Referenced by com.latencybusters.lbm.LBMContext.getImmediateMessageSourceStatistics().
long com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.retransmissionBytesSent | ( | ) |
Total number of bytes retransmitted by this source transport (LBT-RM only).
This count is triggered under the same circumstances as retransmissionsSent, above. In a normal, light-loss scenario, most NAKs received induce a retransmission. When losses become heavy and/or many receiver transports begin losing the same datagrams, NCF-related no-retransmit counts (naksIgnored, naksShed and naksIgnoredRetransmitDelay) may begin to inflate, and retransmissions retransmissionsSent) may become significantly lower than NAKs received (naksReceived). This method returns a value from the first set of statistics encapsulated within this object.
long com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.retransmissionBytesSent | ( | int | n | ) |
Total number of bytes retransmitted by this source transport (LBT-RM only).
This count is triggered under the same circumstances as retransmissionsSent, above. In a normal, light-loss scenario, most NAKs received induce a retransmission. When losses become heavy and/or many receiver transports begin losing the same datagrams, NCF-related no-retransmit counts (naksIgnored, naksShed and naksIgnoredRetransmitDelay) may begin to inflate, and retransmissions retransmissionsSent) may become significantly lower than NAKs received (naksReceived). This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
long com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.retransmissionsQueued | ( | ) |
Number of retransmission datagrams currently queued by the retransmit rate limiter (LBT-RM only).
When a source transport attempts to send retransmissions faster that its retransmit rate limiter allows (set by configuration option transport_lbtrm_retransmit_rate_limit, default 5Mbps), the retransmit rate limiter queues retransmissions until they can be sent within the rate limit. naksIgnoredRetransmitDelay (above) will generally also rise if this count is high. This method returns a value from the first set of statistics encapsulated within this object.
long com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.retransmissionsQueued | ( | int | n | ) |
Number of retransmission datagrams currently queued by the retransmit rate limiter (LBT-RM only).
When a source transport attempts to send retransmissions faster that its retransmit rate limiter allows (set by configuration option transport_lbtrm_retransmit_rate_limit, default 5Mbps), the retransmit rate limiter queues retransmissions until they can be sent within the rate limit. naksIgnoredRetransmitDelay (above) will generally also rise if this count is high. This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
long com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.retransmissionsSent | ( | ) |
Number of datagrams retransmitted by this source transport (LBT-RM only).
This count is incremented under the same circumstances as retransmissionBytesSent, below. In a normal, light-loss scenario, most NAKs received induce a retransmission. When losses become heavy and/or many receiver transports begin losing the same datagrams, NCF-related no-retransmit counts (naksIgnored, naksShed and naksIgnoredRetransmitDelay) may begin to inflate, and retransmissions retransmissionsSent) may become significantly lower than NAKS received (naksReceived). This method returns a value from the first set of statistics encapsulated within this object.
long com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.retransmissionsSent | ( | int | n | ) |
Number of datagrams retransmitted by this source (LBT-RM only).
This count is incremented under the same circumstances as retransmissionBytesSent, below. In a normal, light-loss scenario, most NAKs received induce a retransmission. When losses become heavy and/or many receiver transports begin losing the same datagrams, NCF-related no-retransmit counts (naksIgnored, naksShed and naksIgnoredRetransmitDelay) may begin to inflate, and retransmissions retransmissionsSent) may become significantly lower than NAKS received (naksReceived). This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
int com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.size | ( | ) |
Number of statistical sets encapsulated within this object.
string com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.source | ( | ) |
Source of transport as a string.
This method returns a value from the first set of statistics encapsulated within this object. The string format depends on transport type and is described under LBMTransportSourceInfo.
string com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.source | ( | int | n | ) |
Source of transport as a string.
This method returns a value from the nth set of statistics encapsulated within this object. The string format depends on transport type and is described under LBMTransportSourceInfo.
n | Statistics set index |
long com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.transmissionWindowBytes | ( | ) |
Number of bytes currently in the transmission window (LBT-RM only)
Number of bytes currently in the transmission window. Typically, this count approaches its window size or exceeds it by a small amount. See transmissionWindowMessages for a description of the transmission window. This method returns a value from the first set of statistics encapsulated within this object.
long com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.transmissionWindowBytes | ( | int | n | ) |
Number of bytes currently in the transmission window (LBT-RM only)
Number of bytes currently in the transmission window. Typically, this count approaches its window size or exceeds it by a small amount. See transmissionWindowMessages for a description of the transmission window. This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
long com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.transmissionWindowMessages | ( | ) |
Number of datagrams in the transmission window (LBT-RM only).
Each source transport session maintains a transmission window buffer (the size of which is set by transport_lbtrm_transmission_window_size, default 24MB). When the source transport receives a NAK, the corresponding message for retransmission must be found in this transmission window. This method returns a value from the first set of statistics encapsulated within this object.
long com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.transmissionWindowMessages | ( | int | n | ) |
Number of datagrams in the transmission window (LBT-RM only).
Each source transport session maintains a transmission window buffer (the size of which is set by transport_lbtrm_transmission_window_size, default 24MB). When the source transport receives a NAK, the corresponding message for retransmission must be found in this transmission window. This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
int com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.type | ( | ) |
Transport type (TCP, LBT-RM, etc.)
This method returns a value from the first set of statistics encapsulated within this object.
int com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.type | ( | int | n | ) |
Transport type (TCP, LBT-RM, etc.)
This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
string com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.typeName | ( | ) |
Transport type name (TCP, LBT-RM, etc.).
This method returns a value from the first set of statistics encapsulated within this object
string com.latencybusters.lbm.LBMImmediateMessageSourceStatistics.typeName | ( | int | n | ) |
Transport type name (TCP, LBT-RM, etc.).
This method returns a value from the nth set of statistics encapsulated within this object.
n | Statistics set index |
References com.latencybusters.lbm.LBM.TRANSPORT_STAT_LBTRM, com.latencybusters.lbm.LBM.TRANSPORT_STAT_LBTRU, and com.latencybusters.lbm.LBM.TRANSPORT_STAT_TCP.