Arthas线上代码诊断神器-定位问题

什么是Arthas

Arthas是阿里开源的一款优秀的代码诊断工具

生产环境我们经常会遇到这样那样的bug,由于生产环境产生bug的不可复制性,开发人员经常对其束手无策,代码诊断工具应运而生。

Arthas是阿里最新的一款诊断工具上,在此之前阿里分别开源了HouseMD、Greys,Arthas继承了上两代的优点,功能更加强大,交互更加方便。

Arthas能做什么

快速定位问题

下面分享几个快速定位问题的用法

monitor -c 5 com.xxx.xxServiceImpl xxx

Arthas线上代码诊断神器-定位问题_第1张图片

通过平均响应时间和失败率定位问题

watch org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter invokeHandlerMethod {params[0].request.request.coyoteRequest,params[1].getStatus()} params[1].getStatus()!=200

Arthas线上代码诊断神器-定位问题_第2张图片

使用ognl自定义监控springmvc的失败请求

tt -t com.xx.xxxServiceImpl xxx
tt -i 1000 -w {params,returnObj}

Arthas线上代码诊断神器-定位问题_第3张图片

使用tt命令做问题回溯

你可能感兴趣的:(个人笔记)