This is the mail archive of the
systemtap@sourceware.org
mailing list for the systemtap project.
RE: script compilation fails at 'Pass 4'
On Thu, 6 Dec 2012, David Smith wrote:
>
> Perhaps you could back up a bit and tell us what you are really trying
> to do?
our product have ~60 daemons running plus occasionally we spawn ephemeral
processes. Using systemtap I want to find out who connects to whom for
servicing a request.
output something like:
A (pid) <-- Socket --> B (pid)
B (pid) <-- Shared memory --> D (pid)
D (pid) <-- Message queue --> C (pid)
and so on...
I want to match local address+localport from connect() to remote
address+remote port in accept().
Thanks,
Mehul