Re: how to get per-socket stats on udp rx buffer overflow?

Nivedita Singhvi (niv@us.ibm.com)
Fri, 24 May 2002 19:59:03 -0700 (PDT)


> Is there any way for me to see how many incoming packets
> were dropped on a udp socket due to overflowing the input buffer?
> I specifically want this information on a per-socket basis.

The /proc/net/snmp Udp counter InErrors includes the global
count. It would be expensive and usually unnecessary to keep
per-socket stats. Is there a real need for seeing the
per-socket count?

If it helps, you can check the current bytes in the recv queue
in netstat output - you wont know how many bytes have been dropped,
but at least you know the amnt in the queue waiting to be read..

> Chris

thanks,
Nivedita

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/