summaryrefslogtreecommitdiff
path: root/examples/redis-unstable/utils/whatisdoing.sh
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 22:52:54 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 22:52:54 +0100
commitdcacc00e3750300617ba6e16eb346713f91a783a (patch)
tree38e2d4fb5ed9d119711d4295c6eda4b014af73fd /examples/redis-unstable/utils/whatisdoing.sh
parent58dac10aeb8f5a041c46bddbeaf4c7966a99b998 (diff)
downloadcrep-dcacc00e3750300617ba6e16eb346713f91a783a.tar.gz
Remove testing data
Diffstat (limited to 'examples/redis-unstable/utils/whatisdoing.sh')
-rwxr-xr-xexamples/redis-unstable/utils/whatisdoing.sh24
1 files changed, 0 insertions, 24 deletions
diff --git a/examples/redis-unstable/utils/whatisdoing.sh b/examples/redis-unstable/utils/whatisdoing.sh
deleted file mode 100755
index 09c0b08..0000000
--- a/examples/redis-unstable/utils/whatisdoing.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-# 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