mysql> select * from sockets limit 30;
of note is that the starttime column is only populated if we find a SYN (signifying the start of a conversation) otherwise it defaults to -1.
Choose the idsock (18 is chosen for the example) of one of the sockets and we'll use it to pull the equivalent of "follow socket conversation" from a tool like Ethereal:
mysql> select idpack, srcip, dstip, srcport, dstport, packetsize,
ttl, winsz, flags, seqnum, acknum,
from_unixtime(timestamp), idtrace, idsocket
from packets
where idsocket = 18;
Ooooh.... ahhh, huh?