mirror of https://github.com/midoks/mdserver-web
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
396 B
13 lines
396 B
#!/bin/sh
|
|
|
|
# cd /www/server/mdserver-web/plugins/op_waf/t && sh ngx_demo.sh
|
|
|
|
# cd /www/wwwroot/dev156.cachecha.com && sh ngx_demo.sh
|
|
|
|
pid=`ps -ef|grep openresty | grep -v grep | awk '{print $2}'`
|
|
|
|
perf record -F 99 -p $pid -g -- sleep 60
|
|
|
|
perf script -i perf.data &> perf.unfold
|
|
/opt/FlameGraph/stackcollapse-perf.pl perf.unfold &> perf.folded
|
|
/opt/FlameGraph/flamegraph.pl perf.folded > perf.svg |