forked from epickrram/async-profiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
profiler.sh
executable file
·183 lines (169 loc) · 4.47 KB
/
profiler.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
#!/bin/bash
usage() {
echo "Usage: $0 [action] [options] <pid>"
echo "Actions:"
echo " start start profiling and return immediately"
echo " stop stop profiling"
echo " status print profiling status"
echo " list list profiling events supported by the target JVM"
echo " collect collect profile for the specified period of time"
echo " and then stop (default action)"
echo "Options:"
echo " -e event profiling event: cpu|alloc|lock|cache-misses etc."
echo " -d duration run profiling for <duration> seconds"
echo " -f filename dump output to <filename>"
echo " -i interval sampling interval in nanoseconds"
echo " -b bufsize frame buffer size"
echo " -t profile different threads separately"
echo " -o fmt[,fmt...] output format: summary|traces|flat|collapsed|svg"
echo ""
echo "<pid> is a numeric process ID of the target JVM"
echo " or 'jps' keyword to find running JVM automatically using jps tool"
echo ""
echo "Example: $0 -d 30 -f profile.svg 3456"
echo " $0 start -i 999000 jps"
echo " $0 stop -o summary,flat jps"
exit 1
}
mirror_output() {
# Mirror output from temporary file to local terminal
if [[ $USE_TMP ]]; then
if [[ -f $FILE ]]; then
cat $FILE
rm $FILE
fi
fi
}
check_if_terminated() {
if ! kill -0 $PID 2> /dev/null; then
mirror_output
exit 0
fi
}
jattach() {
$JATTACH $PID load "$PROFILER" true $1 > /dev/null
RET=$?
# Check if jattach failed
if [ $RET -ne 0 ]; then
if [ $RET -eq 255 ]; then
echo "Failed to inject profiler into $PID"
UNAME_S=$(uname -s)
if [ "$UNAME_S" == "Darwin" ]; then
otool -L "$PROFILER"
else
ldd "$PROFILER"
fi
fi
exit $RET
fi
mirror_output
}
function abspath() {
UNAME_S=$(uname -s)
if [ "$UNAME_S" == "Darwin" ]; then
perl -MCwd -e 'print Cwd::abs_path shift' $1
else
readlink -f $1
fi
}
OPTIND=1
SCRIPT_DIR=$(dirname $0)
JATTACH=$SCRIPT_DIR/build/jattach
PROFILER=$(abspath $SCRIPT_DIR/build/libasyncProfiler.so)
ACTION="collect"
EVENT="cpu"
DURATION="60"
FILE=""
USE_TMP="true"
INTERVAL=""
FRAMEBUF=""
THREADS=""
OUTPUT=""
while [[ $# -gt 0 ]]; do
case $1 in
-h|"-?")
usage
;;
start|stop|status|list|collect)
ACTION="$1"
;;
-e)
EVENT="$2"
shift
;;
-d)
DURATION="$2"
shift
;;
-f)
FILE="$2"
unset USE_TMP
shift
;;
-i)
INTERVAL=",interval=$2"
shift
;;
-b)
FRAMEBUF=",framebuf=$2"
shift
;;
-t)
THREADS=",threads"
;;
-o)
OUTPUT="$2"
shift
;;
[0-9]*)
PID="$1"
;;
jps)
# A shortcut for getting PID of a running Java application
# -XX:+PerfDisableSharedMem prevents jps from appearing in its own list
PID=$(jps -q -J-XX:+PerfDisableSharedMem)
;;
*)
echo "Unrecognized option: $1"
usage
;;
esac
shift
done
[[ "$PID" == "" ]] && usage
# if no -f argument is given, use temporary file to transfer output to caller terminal
if [[ $USE_TMP ]]; then
FILE=$(mktemp /tmp/async-profiler.XXXXXXXX)
fi
# select default output format
if [[ "$OUTPUT" == "" ]]; then
if [[ $FILE == *.svg ]]; then
OUTPUT="svg"
elif [[ $FILE == *.collapsed ]] || [[ $FILE == *.folded ]]; then
OUTPUT="collapsed"
else
OUTPUT="summary,traces=200,flat=200"
fi
fi
case $ACTION in
start)
jattach start,event=$EVENT,file=$FILE$INTERVAL$FRAMEBUF$THREADS,$OUTPUT
;;
stop)
jattach stop,file=$FILE,$OUTPUT
;;
status)
jattach status,file=$FILE
;;
list)
jattach list,file=$FILE
;;
collect)
jattach start,event=$EVENT,file=$FILE$INTERVAL$FRAMEBUF$THREADS,$OUTPUT
while (( DURATION-- > 0 )); do
check_if_terminated
sleep 1
done
jattach stop,file=$FILE,$OUTPUT
;;
esac