Skip to content

Instantly share code, notes, and snippets.

@fcicq
Created October 30, 2012 17:31
Show Gist options
  • Save fcicq/3981724 to your computer and use it in GitHub Desktop.
Save fcicq/3981724 to your computer and use it in GitHub Desktop.
poor man's profiler via http://poormansprofiler.org/ , modify pid if required
#!/bin/bash
nsamples=1
sleeptime=0
pid=$(pidof mysqld)
for x in $(seq 1 $nsamples)
do
gdb -ex "set pagination 0" -ex "thread apply all bt" -batch -p $pid
sleep $sleeptime
done | \
awk '
BEGIN { s = ""; }
/^Thread/ { print s; s = ""; }
/^\#/ { if (s != "" ) { s = s "," $4} else { s = $4 } }
END { print s }' | \
sort | uniq -c | sort -r -n -k 1,1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment