FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
redis/utils/whatisdoing.sh at unstable · williamjava/redis · GitHub
williamjava
/
redis
Public
forked from
redis/redis
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
redis
/
utils
/
whatisdoing.sh
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
24 lines (22 loc) · 693 Bytes
Breadcrumbs
redis
/
utils
/
whatisdoing.sh
Copy path
File metadata and controls
executable file
·
24 lines (22 loc) · 693 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#
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 http://redis.io/topics/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
Back
|
FazBrowse Home
|
New Git URL