fche changed the topic of #systemtap to: http://sourceware.org/systemtap; email systemtap@sourceware.org if answers here not timely, conversations may be logged
__positron has quit [Ping timeout: 240 seconds]
__positron has joined #systemtap
scox has joined #systemtap
orivej has quit [Ping timeout: 276 seconds]
wcohen has quit [Ping timeout: 240 seconds]
wcohen has joined #systemtap
hpt has joined #systemtap
naveen__ has quit [Ping timeout: 240 seconds]
naveen__ has joined #systemtap
ravi has joined #systemtap
Humble has joined #systemtap
nkambo has quit [Ping timeout: 240 seconds]
sanoj has joined #systemtap
orivej has joined #systemtap
hkshaw has joined #systemtap
nkambo has joined #systemtap
nkambo has quit [Client Quit]
groleo has joined #systemtap
__positron has quit [Ping timeout: 240 seconds]
__positron has joined #systemtap
sona has joined #systemtap
lorddoskias has joined #systemtap
sona has quit [Ping timeout: 240 seconds]
jlebon has quit [Ping timeout: 268 seconds]
jlebon has joined #systemtap
sona has joined #systemtap
<lorddoskias> how can i tell stap to only look for kernel sources + debug info in the current directory
<lorddoskias> i've tried this: SYSTEMTAP_DEBUGINFO_PATH=$(pwd) stap -dkernel -r $(pwd) -l 'kernel.statement("btrfs_commit_transaction:*@*")'
<lorddoskias> and it doesn't show anything
<lorddoskias> and pwd is a kernel build directory with vmlinux file inside of it + kernel sources
pwithnall__ has joined #systemtap
sanoj has quit [Ping timeout: 240 seconds]
pwithnall__ has quit [Quit: pwithnall__]
pwithnall____ has joined #systemtap
sanoj has joined #systemtap
__positron has quit [Ping timeout: 240 seconds]
__positron has joined #systemtap
nkambo has joined #systemtap
nkambo has quit [Ping timeout: 240 seconds]
hpt has quit [Quit: Lost terminal]
scox has quit [Ping timeout: 240 seconds]
groleo has quit [Read error: Connection reset by peer]
hkshaw has quit [Quit: Leaving.]
wcohen has quit [Ping timeout: 255 seconds]
sona has quit [Ping timeout: 260 seconds]
sona has joined #systemtap
wcohen has joined #systemtap
ravi has quit [Remote host closed the connection]
hkshaw has joined #systemtap
<fche> it should work
<fche> stap -vvv etc. for more info about what stap's looking at
<lorddoskias> fche: thanks i dealt with that issue :). Now I'm battling with histograms
<lorddoskias> can I create histograms of calltraces?
<lorddoskias> e.g. callstack[backtrace()] << 1
<lorddoskias> and then use @hist_linear to print it (I already tried and got errors re. arity)
mjw has joined #systemtap
wcohen has quit [Ping timeout: 240 seconds]
hpt has joined #systemtap
Humble has quit [Quit: Leaving]
Humble has joined #systemtap
scox has joined #systemtap
orivej has quit [Ping timeout: 240 seconds]
mbenitez has joined #systemtap
drsmith_away is now known as drsmith
nkambo has joined #systemtap
mbenitez has quit [Ping timeout: 268 seconds]
mbenitez has joined #systemtap
mbenitez has joined #systemtap
mbenitez has quit [Changing host]
<fche> histogram buckets are by necessity based on simple integers
wcohen has joined #systemtap
sanoj has quit [Ping timeout: 264 seconds]
sanoj has joined #systemtap
<lorddoskias> fche: so no way to achieve that
<fche> look at the way the pf* examples do it
<fche> not via histograms but scalar stats (counts indexed by backtrace-tuples)
<fche> then one can report on them based on / sorted-by @count()
sanoj has quit [Ping timeout: 246 seconds]
<lorddoskias> okay, thanks ;)
<lorddoskias> btw what's the state of the ebpf backend i.e. is git HEAD ok for general usage?
<lorddoskias> last time you said things were crazy
tromey has joined #systemtap
orivej has joined #systemtap
<sona> hi
<fche> things are getting better
<fche> we'd love for you to try it :)
<sona> is there any way to access target variable outside probe definition
<sona> target varaibles depend on the probe function , which is dependent on command line argument given by user
<sona> in my case
<fche> $vars are dependent on the context of a probe to even resolve them / make sense of them
<fche> there is a construct @var("name") for accessing from other contexts, but that has a variety of constraints too
<fche> consider: if you put a breakpoint into a random program at a random point, most variables won't even exist from those points (like a local variable from a function that's not currently running)
<sona> okie
<sona> fche, i am writing a genaralize script to probe few functions and checking value of a few target variables ( which exists at the time of probing), say a and b are functions . I want to take value of target varaible for the, say tar_var=$this (for function a) and tar_var=$inode (for function b)
<sona> how to make this possible
<fche> you could pass $this / $inode as parameters to a common function perhaps
<fche> or use a common probe handler, and if (@defined($this)) { do_something_with($this) }
<sona> fche, kool
<sona> fche, thanks
brolley has joined #systemtap
<sona> are you free?
<sona> sorry, by mistake, ignore
Humble has quit [Ping timeout: 240 seconds]
Humble has joined #systemtap
hpt has quit [Ping timeout: 240 seconds]
sona has quit [Ping timeout: 268 seconds]
rth has joined #systemtap
nkambo_ has joined #systemtap
nkambo has quit [Ping timeout: 240 seconds]
csanting has quit [Ping timeout: 240 seconds]
csanting has joined #systemtap
nkambo_ has quit [Ping timeout: 240 seconds]
nkambo_ has joined #systemtap
hkshaw has quit [Ping timeout: 240 seconds]
orivej has quit [Ping timeout: 268 seconds]
modem has quit [Ping timeout: 240 seconds]
modem has joined #systemtap
lorddoskias has left #systemtap [#systemtap]
pwithnall____ has quit [Quit: pwithnall____]
__positron has quit [Ping timeout: 240 seconds]
csanting has quit [Read error: Connection reset by peer]
csanting has joined #systemtap
pwithnall__ has joined #systemtap
pwithnall__ has quit [Client Quit]
sona has joined #systemtap
sona has quit [Ping timeout: 240 seconds]
mjw has quit [Quit: Leaving]
__positron has joined #systemtap
csanting has quit [Ping timeout: 268 seconds]
csanting has joined #systemtap
irker817 has joined #systemtap
<irker817> systemtap: dsmith systemtap.git:refs/heads/master * release-3.1-66-g696a4ac / systemtap.spec: Add support for the httpd code to systemtap.spec, defaulting to "off". http://tinyurl.com/n3mtkjb
zodbot has quit [Remote host closed the connection]
<irker817> systemtap: dsmith systemtap.git:refs/heads/master * release-3.1-67-g90f2c8d / systemtap.spec: Fix my typo in systemtap.spec. http://tinyurl.com/lvwrxoo
<irker817> systemtap: rth systemtap.git:refs/heads/rth/bpf-unmerge * release-3.1-66-g4b25cd1 / : Revert all bpf patches http://tinyurl.com/mcjr23a
<irker817> systemtap: dsmith systemtap.git:refs/heads/rth/bpf * release-3.1-67-g90f2c8d / systemtap.spec: Fix my typo in systemtap.spec. http://tinyurl.com/kb48rak
zodbot has joined #systemtap
scox has quit [Ping timeout: 255 seconds]
mbenitez has quit [Quit: Leaving]
gmg has joined #systemtap
orivej has joined #systemtap
wcohen has quit [Ping timeout: 240 seconds]
rth has quit [Quit: Leaving]
drsmith is now known as drsmith_away
pwithnall__ has joined #systemtap
brolley has left #systemtap [#systemtap]
wcohen has joined #systemtap
tromey has quit [Quit: ERC (IRC client for Emacs 26.0.50)]
pwithnall__ has quit [Quit: pwithnall__]