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]
<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.