UDP stats
Represents the statistics for the UDP protocol, including the number of datagrams sent and received,
as well as any errors or datagrams with no port
Properties
datagramsSent
The total number of UDP datagrams sent
datagramsReceived
The total number of UDP datagrams received
val datagramsReceived: Long = statsSample.datagramsReceived
println(datagramsReceived) // e.g. 439800
datagramsNoPort
The total number of UDP datagrams that did not have a corresponding port to route to
datagramsNoPort
The total number of UDP datagrams that were received with errors (e.g., checksum errors)