|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /usr/share/doc/systemtap-client-1.8/examples/profiling/ |
Upload File : |
#!/usr/bin/stap
# usage: fntimes.stp FUNCTIONPROBE
# e.g. fntimes.stp 'module("ext4").function("*")'
global mincount = 100 # training: beneath this number of hits, only collect data
global note_percent = 250 # percent beyond maximum-so-far to generate report for
function time() { return gettimeofday_us() } # time measurement function
global times
function check(t) # t: elapsed time
{
pf=probefunc()
if (@count(times[pf]) >= mincount
&& t >= @max(times[pf]) * note_percent / 100) { # also consider @avg()
printf("function %s well over %s time (%d vs %d)\n",
pf, "maximum", t, @max(times[pf]))
# also consider: print_backtrace()
}
times[pf] <<< t # (increments @count, updates @max)
}
probe $1.return { check(time()-@entry(time())) }