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
modem_ has quit [Ping timeout: 248 seconds]
sfink has joined #systemtap
hpt has quit [Ping timeout: 250 seconds]
hpt has joined #systemtap
ravi_ has joined #systemtap
hpt has quit [Ping timeout: 252 seconds]
hpt has joined #systemtap
naveen has joined #systemtap
ego__ has joined #systemtap
srikar_away is now known as srikar
ananth has joined #systemtap
ego__ has quit [Ping timeout: 255 seconds]
hkshaw has joined #systemtap
hpt has quit [Ping timeout: 276 seconds]
hpt has joined #systemtap
hchiramm has quit [Ping timeout: 255 seconds]
nkambo has joined #systemtap
nkambo has quit [Ping timeout: 240 seconds]
hchiramm has joined #systemtap
nkambo has joined #systemtap
hpt has quit [Ping timeout: 255 seconds]
hpt has joined #systemtap
nkambo has quit [Read error: Connection reset by peer]
nkambo has joined #systemtap
hpt has quit [Ping timeout: 244 seconds]
ego has joined #systemtap
naveen has quit [Quit: Leaving.]
ego has quit [Ping timeout: 240 seconds]
nkambo has quit [Ping timeout: 240 seconds]
wakatana2 has joined #systemtap
nkambo has joined #systemtap
ego has joined #systemtap
hchiramm has quit [Ping timeout: 248 seconds]
hchiramm has joined #systemtap
hkshaw has quit [Ping timeout: 255 seconds]
ravi_ has quit [Remote host closed the connection]
scox has quit [Ping timeout: 255 seconds]
hkshaw has joined #systemtap
ananth has quit [Quit: Leaving]
nkambo1 has joined #systemtap
nkambo has quit [Ping timeout: 255 seconds]
ego has quit [Ping timeout: 240 seconds]
hchiramm has quit [Ping timeout: 252 seconds]
srikar is now known as srikar_away
wielaard has joined #systemtap
hchiramm has joined #systemtap
mbenitez has joined #systemtap
mbenitez has joined #systemtap
ravi_ has joined #systemtap
mjw has quit [Quit: Leaving]
wielaard has quit [Quit: Leaving]
mjw has joined #systemtap
nkambo2 has joined #systemtap
nkambo1 has quit [Ping timeout: 244 seconds]
scox has joined #systemtap
hkshaw has quit [Quit: Leaving.]
wcohen has quit [Ping timeout: 244 seconds]
nkambo1 has joined #systemtap
nkambo2 has quit [Ping timeout: 240 seconds]
flu_ has joined #systemtap
drsmith_away is now known as drsmith
naveen has joined #systemtap
nkambo2 has joined #systemtap
nkambo1 has quit [Ping timeout: 252 seconds]
srikar_away is now known as srikar
tromey has joined #systemtap
brolley has joined #systemtap
pmuldoon has quit [Ping timeout: 240 seconds]
pmuldoon_ has joined #systemtap
ego has joined #systemtap
wcohen has joined #systemtap
orivej has joined #systemtap
<orivej> Is there a function to print a systemtap aggregate variable in the same format it would be printed if I never read from it (@count=... @min=... @max=... @sum=... @avg=...)?
<fche> orivej, not a single function - just printf("") I guess, or if an array, a foreach/printf combo
<fche> we could grow a macro in the tapset that replicates the built-in auto-printer
<orivej> ok, thanks
<fche> if you'd like to try the tapset route, @define prints(s) %( printf("@count=%d @min=%d @max=%d ...", @count(%s), ... ) %)
<fche> kind of thing
<fche> %s -> @s actually at the end there
ravi_ has quit [Remote host closed the connection]
ego has quit [Ping timeout: 276 seconds]
<orivej> yes, this works:
<orivej> @define prints(s) %(
<orivej> printf("@count=%d @min=%d @max=%d @sum=%d @avg=%d\n",
<orivej> @count(@s), @min(@s), @max(@s), @sum(@s), @avg(@s))
<orivej> %)
<fche> neato. would you like us to include it in the distro for future versions ?
<orivej> i'm not experienced enough to decide
<fche> no problem, it looks good to me fwiw. do you mind if I put it into the repo under your name?
<orivej> ok
<fche> orivej, what email address shall we record for you?
<fche> (if you would like to share one)
<orivej> orivej@gmx.fr
<fche> ok
hchiramm has quit [Ping timeout: 276 seconds]
<orivej> fche, I submitted the issue about dash on Gentoo https://sourceware.org/bugzilla/show_bug.cgi?id=19700 , I can provide details here if you need any
<fche> ah right
<fche> that's on my queue shortly too
<fche> that last patch > $@ is cute
<orivej> I did not think of it until I saw ">> $@" in the generated Makefile
<fche> thanks for checking on the other uses of echo -n
naveen has quit [Read error: Connection reset by peer]
ajakop has joined #systemtap
naveen has joined #systemtap
<orivej> In fact I was surprised that "print" would not print a statistic variable, since it is documented to "print one or more values of any type". Would it be good to extend the family of print functions to support complex types?
naveen has quit [Quit: Leaving.]
mbenitez has quit [Quit: To office]
hchiramm has joined #systemtap
srikar is now known as srikar_away
hchiramm has quit [Ping timeout: 244 seconds]
mbenitez has joined #systemtap
mjw has quit [Quit: Leaving]
<fche> orivej, that's a reasonable suggestion, hmm.
irker624 has joined #systemtap
<irker624> systemtap: dsmith systemtap.git:refs/heads/master * release-2.9-351-g3d7e775 / man/stap.1.in man/systemtap.8.in runtime/dyninst/print.c runtime/linux/print.c runtime/print_flush.c runtime/transport/transport.c testsuite/systemtap.printf/sharedbuf.exp: Fix PR15775 by removing old relay host/guest functionality. http://tinyurl.com/hepqh8a
<orivej> fche, then it sounds interesting, likely I'll try to implement it.
mjw has joined #systemtap
<fche> orivej, excellent
orivej has quit [Ping timeout: 250 seconds]
<irker624> systemtap: dsmith systemtap.git:refs/heads/master * release-2.9-352-gc13f029 / tapset/linux/aux_syscalls.stp: Fix rawhide compile problems in aux_syscalls.stp. http://tinyurl.com/h9ktotl
cbzx has joined #systemtap
<irker624> systemtap: orivej systemtap.git:refs/heads/master * release-2.9-353-gb03e708 / buildrun.cxx: PR19700: build fix on gentoo http://tinyurl.com/j7h7lgu
flu_ has quit [Ping timeout: 276 seconds]
flu_ has joined #systemtap
cbzx has quit [Quit: Konversation terminated!]
nkambo2 has quit [Quit: Good day !]
modem_ has joined #systemtap
modem_ has quit [Ping timeout: 248 seconds]
flu_ has quit [Quit: flu_]
tromey has quit [Quit: ERC (IRC client for Emacs 25.0.90.1)]
wakatana2 has left #systemtap [#systemtap]
mbenitez has quit [Quit: Leaving]
drsmith has left #systemtap [#systemtap]
wcohen has quit [Ping timeout: 250 seconds]
fLiPr3VeRsE has quit [*.net *.split]
spikeh has quit [*.net *.split]
serhei has quit [*.net *.split]
modem has quit [*.net *.split]
lzap has quit [*.net *.split]
srikar_away has quit [*.net *.split]
przemoc has quit [*.net *.split]
Meths has quit [*.net *.split]
lberk has quit [*.net *.split]
jistone has quit [*.net *.split]
mjw has quit [*.net *.split]
brolley has quit [*.net *.split]
sjas has quit [*.net *.split]
eichiro has quit [*.net *.split]
pfallenop has quit [*.net *.split]
groleo has quit [*.net *.split]
dtatulea has quit [*.net *.split]
ajakop has quit [*.net *.split]
pmuldoon_ has quit [*.net *.split]
CME has quit [*.net *.split]
irker624 has quit [*.net *.split]
sfink has quit [*.net *.split]
zodbot has quit [*.net *.split]
pcarrier has quit [*.net *.split]
sadmac has quit [*.net *.split]
lindi- has quit [*.net *.split]
scox has quit [*.net *.split]
lorddoskias1 has quit [*.net *.split]
darvon has quit [*.net *.split]
jlebon has quit [*.net *.split]
tonyj has quit [*.net *.split]
ton31337 has quit [*.net *.split]
dmalcolm has quit [*.net *.split]
fche has quit [*.net *.split]
ChanServ has quit [*.net *.split]
modem has joined #systemtap
przemoc has joined #systemtap
srikar_away has joined #systemtap
ajakop has joined #systemtap
CME has joined #systemtap
pmuldoon_ has joined #systemtap
dtatulea has joined #systemtap
mjw has joined #systemtap
brolley has joined #systemtap
sjas has joined #systemtap
eichiro has joined #systemtap
pfallenop has joined #systemtap
groleo has joined #systemtap
fLiPr3VeRsE has joined #systemtap
spikeh has joined #systemtap
serhei has joined #systemtap
jlebon has joined #systemtap
tonyj has joined #systemtap
ton31337 has joined #systemtap
dmalcolm has joined #systemtap
fche has joined #systemtap
lorddoskias1 has joined #systemtap
darvon has joined #systemtap
scox has joined #systemtap
sjas has quit [Ping timeout: 240 seconds]
irker624 has joined #systemtap
sfink has joined #systemtap
brolley has left #systemtap [#systemtap]
ChanServ has joined #systemtap
pcarrier has joined #systemtap
<irker624> systemtap: ajakop systemtap.git:refs/heads/ajakop/13608 * release-2.9-354-g23ebda6 / stap-serverd.cxx: PR13608: check client's zipped request size http://tinyurl.com/jpvhnr7
<irker624> systemtap: ajakop systemtap.git:refs/heads/ajakop/13608 * release-2.9-355-gafd1dce / stap-serverd.cxx: PR13608: check size of uncompressed client request http://tinyurl.com/h674zp8
ajakop has quit [Quit: Leaving]
zodbot has joined #systemtap
sjas has joined #systemtap
wcohen has joined #systemtap