官方项目文档:https://gitee.com/arthas/arthas (最权威的教学还是得官网,这里仅作简单记录)
1:启动
java -jar arthas-boot.jar
2:查看cpu占用排名前三
thread -3`
3:查看指定id
thread 203`
4:查看指定方法耗时:
trace com.cmcc.sop.business.controller.workorder.WorkOrderSubmitController syncSubmit -n 5 --skipJDKMethod false '#cost>1000'
5:查看某个方法得输入输出或者异常;
watch
com.cmcc.sop.business.controller.workorder.WorkOrderSubmitController
syncSubmit ‘{params,returnObj,throwExp}’ -n 5 -x 3
6:记录方法调用:
tt -t
com.cmcc.sop.business.controller.workorder.WorkOrderSubmitController
syncSubmit -n 5
7:重新发送6中1000的请求:
tt -p -i 1000
结束了。。。