-
|
I try to get
Is send lose rate could be |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
Hi, For each connection:
This is curious and should normally not be the case. Looking for logs like "Spurious loss detected" and "Lost:" could help you understand why you see it (the packet number will be printed in the logs). I hope it helps. |
Beta Was this translation helpful? Give feedback.
Hi,
For each connection:
SendSpuriousLostPacketsrepresents the number of packets that have been considered lost, but were eventually acknowledged (so not lost for real, although we might have already retransmitted their content).SendSuspectedLostPacketsrepresents the number of packets that have been considered lost.SendTotalPacketsis the number of QUIC packets sent (in some situations, multiple packets can share a single UDP datagram).This is curious and should normally not be the case. Looking for logs like "Spurious loss detected" and "Lost:" could help you understand why you see it (the packet number will be print…