fche changed the topic of #systemtap to: http://sourceware.org/systemtap; email systemtap@sourceware.org if answers here not timely, conversations may be logged
hpt has joined #systemtap
gromero has joined #systemtap
scox has joined #systemtap
hpt has quit [Ping timeout: 248 seconds]
gromero has quit [Ping timeout: 240 seconds]
hpt has joined #systemtap
scox has quit [Ping timeout: 240 seconds]
hpt has quit [Ping timeout: 260 seconds]
hpt has joined #systemtap
hpt has quit [Quit: leaving]
_whitelogger has joined #systemtap
slowfranklin has joined #systemtap
Humble has quit [Ping timeout: 246 seconds]
Humble has joined #systemtap
sanoj has joined #systemtap
slowfranklin has quit [Quit: slowfranklin]
orivej has joined #systemtap
irker627 has quit [Quit: transmission timeout]
orivej has quit [Ping timeout: 240 seconds]
slowfranklin has joined #systemtap
mjw has joined #systemtap
nkambo has quit [Ping timeout: 248 seconds]
nkambo has joined #systemtap
wcohen has quit [Ping timeout: 240 seconds]
sanoj has quit [Quit: Leaving]
mbenitez has joined #systemtap
mbenitez has quit [Changing host]
mbenitez has joined #systemtap
wcohen has joined #systemtap
scox has joined #systemtap
drsmith_away is now known as drsmith
nkambo_ has joined #systemtap
nkambo has quit [Ping timeout: 248 seconds]
nkambo__ has joined #systemtap
nkambo_ has quit [Ping timeout: 248 seconds]
nkambo_ has joined #systemtap
nkambo__ has quit [Ping timeout: 255 seconds]
nkambo_ has quit [Ping timeout: 260 seconds]
tromey has joined #systemtap
brolley has joined #systemtap
nkambo_ has joined #systemtap
nkambo__ has joined #systemtap
nkambo_ has quit [Ping timeout: 260 seconds]
nkambo_ has joined #systemtap
nkambo__ has quit [Ping timeout: 240 seconds]
irker275 has joined #systemtap
<irker275> systemtap: dsmith systemtap.git:refs/heads/master * release-3.1-313-g2cd9b44 / testsuite/systemtap.base/stap_hwbkpt_kmod.c testsuite/systemtap.base/stap_kmodule.c testsuite/systemtap.context/systemtap_test_module1.c testsuite/systemtap.printf/memory1_module.c: Add some testsuite test kernel module fixes for rawhide. http://tinyurl.com/yb38rght
nkambo__ has joined #systemtap
nkambo_ has quit [Ping timeout: 260 seconds]
gromero has joined #systemtap
nkambo_ has joined #systemtap
nkambo__ has quit [Ping timeout: 255 seconds]
nkambo__ has joined #systemtap
nkambo_ has quit [Ping timeout: 255 seconds]
nkambo_ has joined #systemtap
nkambo__ has quit [Ping timeout: 255 seconds]
nkambo__ has joined #systemtap
nkambo_ has quit [Ping timeout: 240 seconds]
nkambo_ has joined #systemtap
nkambo__ has quit [Ping timeout: 246 seconds]
<irker275> systemtap: dsmith systemtap.git:refs/heads/master * release-3.1-314-g11784d6 / tapset/linux/sysc_msgctl.stp tapset/linux/sysc_shmctl.stp: Updated the sysc_msgctl and sysc_shmctl tapsets for rawhide. http://tinyurl.com/ycgf4hhu
nkambo_ has quit [Ping timeout: 258 seconds]
nkambo_ has joined #systemtap
mbenitez has quit [Quit: To lunch / office]
slowfranklin has quit [Quit: slowfranklin]
slowfranklin has joined #systemtap
gromero has quit [Ping timeout: 255 seconds]
mbenitez has joined #systemtap
mbenitez has quit [Changing host]
mbenitez has joined #systemtap
<irker275> systemtap: amerey systemtap.git:refs/heads/master * release-3.1-315-ge2298f9 / testsuite/systemtap.bpf/bpf_tests/array.stp testsuite/systemtap.bpf/bpf_tests/while.stp: stapbpf: add while loop test http://tinyurl.com/yca9ycr8
<irker275> systemtap: amerey systemtap.git:refs/heads/master * release-3.1-316-g591bc40 / NEWS doc/Makefile.in java/Makefile.in man/stap.1.in stapbpf/Makefile.am stapbpf/Makefile.in: Add stapbpf man page, update NEWS and stap man page with stapbpf info. http://tinyurl.com/y8bwmh8d
<irker275> systemtap: amerey systemtap.git:refs/heads/master * release-3.1-317-gbbd8aae / stapbpf/stapbpf.8: Add stapbpf.8 to stapbpf directory. http://tinyurl.com/ycymeg59
slowfranklin has quit [Quit: slowfranklin]
slowfranklin has joined #systemtap
slowfranklin has quit [Client Quit]
silvaleandrodp has joined #systemtap
<silvaleandrodp> Hi everyone
<silvaleandrodp> i'm having a hardtime with probe perf someone could help?
<fche> silvaleandrodp, can try, what's up?
<silvaleandrodp> Hi fche i'm trying to get the return of a perf counter but it seems that perf.type(0).config(0) don't have any variables
<fche> a probe perf.* doesn't let you -read- the perfcounter value; it just arranges to interrupt / run a handler every XXX counts
<fche> that's because, at least at the time this feature was written, the kernel did not possess a suitable api for us to read actual counter values from our execution contexts
<fche> there is another similar facility, for userspace probes only, that lets one read process-specific perfcounters
<fche> see [man stapprobes], the probe perf.type(NN).config(MM).process("PROC").counter("COUNTER") { } part and process("PROCESS").statement("func@file") {stat <<< @perf("NAME")}
<irker275> systemtap: fche systemtap.git:refs/heads/master * release-3.1-318-g3c612a1 / man/stapprobes.3stap: man stapprobes: tweak uprobe-perf probe templates to match metavariables http://tinyurl.com/ybgte8je
drsmith is now known as drsmith_away
<silvaleandrodp> I see, I will try these, i'm working on this for some days and stil dont fid a way. I'm trying to accoun the power consumption of the kernel reading the rapl counters in power/energy-cores/
<fche> some such counters can be most easily read from userspace
<silvaleandrodp> but is it possible to account all proccessing done in kernel space from user space?
<fche> that's a good question. have you been able to find a perf.* probe parametrization that at least attached to those rapl counters?
silvaleandrodp has quit [Ping timeout: 260 seconds]
silvaleandrodp has joined #systemtap
<silvaleandrodp> sorry i was disconnected, from terminal we can read it #perf -a -e power/energy-cores/
<silvaleandrodp> the configurations of this counter can be found at /sys/bus/event_source/devices/power
<silvaleandrodp> reading it i thik it would be perf.type(14).config(0)
<fche> hm on my machine here /sys/bus/event_source/devices/power/type:8 ... but the kernel rejects probe perf.type(8).config(0) {}
wcohen has quit [Ping timeout: 260 seconds]
drsmith_away is now known as drsmith
<silvaleandrodp> it's not working here too, in my system it is 14 and i'm almost sure tha it is the right value for type, but i dont know well what the valye for config
<fche> yeah, sorry I don't have a canned answer for you
drsmith is now known as drsmith_away
<fche> will add a PR to track this at least
drsmith_away is now known as drsmith
nkambo__ has joined #systemtap
nkambo_ has quit [Ping timeout: 248 seconds]
nkambo__ has quit [Ping timeout: 258 seconds]
scox has quit [Ping timeout: 240 seconds]
mjw has quit [Quit: Leaving]
tromey has quit [Quit: ERC (IRC client for Emacs 26.0.60)]
mbenitez has quit [Quit: Leaving]
<irker275> systemtap: dsmith systemtap.git:refs/heads/master * release-3.1-319-g3de3622 / buildrun.cxx tapset/linux/dev.stp tapset/linux/ioblock.stp testsuite/buildok/dev-embedded.stp: Fixed PR22287 by updating the ioblock tapset. http://tinyurl.com/y76mkzjj
orivej has joined #systemtap
<silvaleandrodp> thankyou so much for the support fche
<fche> no problem, I just wish I had a ready-made answer
<silvaleandrodp> if i find something useful i came to share
<fche> if we're lucky, some type/config tuple will do what we need; even if that number tuple is machine-variable (we can try dealing with that)
<fche> if we need -more- parameters for that perf_event_attr struct that defines the probe target, we can let the translator handle those
<fche> it may not be much work, but it's not something the team is going to do immediately
<fche> would be glad to help advise if someone else wants to try
wcohen has joined #systemtap
brolley has left #systemtap [#systemtap]
drsmith is now known as drsmith_away
nkambo__ has joined #systemtap
pwithnall has joined #systemtap
pwithnall has quit [Quit: pwithnall]
pwithnall has joined #systemtap
pwithnall has quit [Client Quit]
pwithnall has joined #systemtap
orivej has quit [Ping timeout: 255 seconds]
scox has joined #systemtap
nkambo_ has joined #systemtap
nkambo__ has quit [Ping timeout: 240 seconds]
nkambo__ has joined #systemtap
nkambo_ has quit [Ping timeout: 248 seconds]
nkambo_ has joined #systemtap
nkambo__ has quit [Ping timeout: 248 seconds]