fche changed the topic of #systemtap to: http://sourceware.org/systemtap; email systemtap@sourceware.org if answers here not timely, conversations may be logged
<lyc>
Tip: /usr/share/doc/systemtap/README.Debian should help you get started.
<lyc>
I change `syscall.*` to `syscall.open` and then it works, it seems `syscall.*` probe is not supported.
<lyc>
I tried sytemtap 3.0 & 2.6
<lyc>
The same.
<lyc>
Does anyone has any clues?
hpt has joined #systemtap
hkshaw has joined #systemtap
ananth has joined #systemtap
ravi has joined #systemtap
hkshaw has quit [Ping timeout: 276 seconds]
lyc has quit [Remote host closed the connection]
ego_ has joined #systemtap
srikar_away is now known as srikar
hkshaw has joined #systemtap
scox| has joined #systemtap
scox_ has quit [Ping timeout: 265 seconds]
hchiramm has joined #systemtap
lyc has joined #systemtap
lyc has quit [Ping timeout: 258 seconds]
scox_ has joined #systemtap
scox| has quit [Ping timeout: 260 seconds]
lyc has joined #systemtap
scox| has joined #systemtap
scox_ has quit [Ping timeout: 250 seconds]
scox_ has joined #systemtap
scox| has quit [Ping timeout: 244 seconds]
lyc has quit [Remote host closed the connection]
srikar is now known as srikar_away
lyc has joined #systemtap
lyc has quit [Remote host closed the connection]
lyc has joined #systemtap
lyc_ has joined #systemtap
lyc has quit [Read error: Connection reset by peer]
lyc has joined #systemtap
srikar_away is now known as srikar
lyc_ has quit [Ping timeout: 258 seconds]
mjw has joined #systemtap
lyc_ has joined #systemtap
lyc has quit [Read error: Connection reset by peer]
lyc has joined #systemtap
lyc_ has quit [Ping timeout: 264 seconds]
hpt has quit [Quit: leaving]
scox| has joined #systemtap
scox_ has quit [Ping timeout: 244 seconds]
ravi has quit [Ping timeout: 260 seconds]
ggherdov` has quit [Ping timeout: 260 seconds]
ggherdov` has joined #systemtap
ggherdov` has quit [Excess Flood]
ggherdov` has joined #systemtap
ravi has joined #systemtap
scox_ has joined #systemtap
scox| has quit [Ping timeout: 252 seconds]
scox| has joined #systemtap
scox_ has quit [Ping timeout: 264 seconds]
scox_ has joined #systemtap
scox| has quit [Ping timeout: 240 seconds]
vbernat has quit [Ping timeout: 264 seconds]
ego_ has quit [Quit: Leaving]
vbernat has joined #systemtap
ph7 has joined #systemtap
lyc has quit [Remote host closed the connection]
lyc has joined #systemtap
lyc has quit [Remote host closed the connection]
lyc has joined #systemtap
scox| has joined #systemtap
scox_ has quit [Ping timeout: 250 seconds]
fix has joined #systemtap
lyc has quit [Ping timeout: 240 seconds]
fix is now known as Guest23406
<Guest23406>
hello, i've got a question: for my thesis I am tapping some shared libraries of httpd and openssl. Aside that i also tap things like tcp.recvmsg. On some runs systemtap seems to work fine and taps all the requested functions, but on some runs it only taps the syscalls (like socket_recvmsg). any pointers on what could cause this?
<Guest23406>
i already tried --disable-cache, but even with that, rm'ing ~/.systemtap/cache and /tmp/stap* seems to be the only solution. i am running systemtap on fedora21.
<fche>
Guest23406, it is a bug if any manual cache-related operations were needed to make your script run properly
<fche>
in your .systemtap/cache/* subdirectories, you'll find a FOO_hash.log file that enumerates all the parameters that go into the hash/id generation algorithm
<fche>
if you can reproduce the failure, that file would be very helpful to see
lyc has joined #systemtap
<fche>
(as would the stap console transcript with some good healthy verbosity)
scox| has quit [Quit: scox|]
lyc has quit [Ping timeout: 240 seconds]
scox has joined #systemtap
scox has quit [Client Quit]
scox has joined #systemtap
hkshaw has joined #systemtap
scox has quit [Ping timeout: 260 seconds]
<Guest23406>
i will have a look at those and see if i can reproduce.
mbenitez has joined #systemtap
<Guest23406>
alright, it gets interesting. when i run my script with --disable-cache it does not create anything under /tmp and ~/.systemtap/cache
<Guest23406>
nevertheless it fails. maybe the problem is with my code, i try to track some stuff the children of httpd do, is there a builtin method of systemtap to track children as well?
<Guest23406>
so far i do the tracking myself by tapping nd_syscall.do_fork.return and kprocess.create
<Guest23406>
the syscall tapsets work fine, but the shared libraries i am tapping do not seem to work.