mirror of
https://github.com/redis/redis.git
synced 2026-02-03 20:39:54 -05:00
This PR replaces old .../topics/... links with current links, specifically for the modules-api-ref.md file and the new automation that Paolo Lazzari is working on. A few of the topics links have redirects, but some don't. Best to use updated links.
24 lines
746 B
Bash
Executable file
24 lines
746 B
Bash
Executable file
# This script is from http://poormansprofiler.org/
|
|
#
|
|
# NOTE: Instead of using this script, you should use the Redis
|
|
# Software Watchdog, which provides a similar functionality but in
|
|
# a more reliable / easy to use way.
|
|
#
|
|
# Check https://redis.io/docs/latest/operate/oss_and_stack/management/optimization/latency/ for more information.
|
|
|
|
#!/bin/bash
|
|
nsamples=1
|
|
sleeptime=0
|
|
pid=$(ps auxww | grep '[r]edis-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
|