Skip to content

Instantly share code, notes, and snippets.

@jzawodn
Created July 16, 2013 23:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jzawodn/6016300 to your computer and use it in GitHub Desktop.
Save jzawodn/6016300 to your computer and use it in GitHub Desktop.
pmp for sphinx/searchd
#!/bin/bash
nsamples=1
sleeptime=0
pid=$(pidof -s searchd)
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