|
how to monitor kernel udp buffer usage?
I have an application that's publishing real time market data. The peak output is close to 15000 UDP packets/sec. There's a concern that some of the packets are being dropped on their way out and also some are being dropped on the way in to the client. What is the way to monitor UDP stack usage?
I know I can change the parameters with
/sbin/sysctl net.core.wmem_max
/sbin/sysctl net.core.wmem_default
same for read, but how do I monitor the usage in real time?
TIA!
|