futriix/utils/whatisdoing.sh
Wen Hui 93b701d8d4
Update Redis legacy keyword and link in utils/whatisdoing.sh (#1495)
Signed-off-by: hwware <wen.hui.ware@gmail.com>
2025-01-03 09:37:55 +08:00

25 lines
697 B
Bash
Executable File

# This script is from http://poormansprofiler.org/
#
# NOTE: Instead of using this script, you should use the Valkey
# Software Watchdog, which provides a similar functionality but in
# a more reliable / easy to use way.
#
# Check https://valkey.io/topics/latency for more information.
#!/bin/bash
nsamples=1
sleeptime=0
pid=$(ps auxww | grep '[v]alkey-server' | awk '{print $2}')
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