As far as I know anything io.* tools display has to do with disk I/O.
Sockets waiting for data remain in the WAIT state you can check with say:
Code:
for s in SYN_RECV SYN_SENT CLOSING CONNECTED ESTABLISHED FIN_WAIT1 FIN_WAIT2 LAST_ACK TIME_WAIT \
UNREPLIED ASSURED; do echo "$(grep -c "$s" /proc/net/ip_conntrack) ${s}"; done | sort -bgr
and cache consumption with say:
Code:
awk '{printf "%5d KB %s\n", $3*$4/(1024), $1}' < /proc/slabinfo | sort -nr
or 'slabtop'.