Viewing File: /opt/rh/gcc-toolset-11/root/usr/share/systemtap/examples/network/socket-trace.stp

#!/opt/rh/gcc-toolset-11/root/usr/bin/stap

probe kernel.function("*@net/socket.c").call {
  printf ("%s -> %s\n", thread_indent(1), ppfunc())
}
probe kernel.function("*@net/socket.c").return {
  printf ("%s <- %s\n", thread_indent(-1), ppfunc())
}
Back to Directory