支持JAVA 6+版本
Arthas 是一款线上监控诊断产品,通过全局视角实时查看应用 load、内存、gc、线程的状态信息,并能在不修改应用代码的情况下,对业务问题进行诊断,包括查看方法调用的出入参、异常,监测方法执行耗时,类加载信息等,大大提升线上问题排查效率
https://github.com/alibaba/arthas/releases
https://arthas.aliyun.com/doc/arthas-tutorials?language=cn
https://arthas.aliyun.com/doc/install-detail.html
可以连外网环境可用
wget https://arthas.aliyun.com/arthas-boot.jar
java -jar arthas-boot.jar
不能连外网环境需要下载全量版本
https://arthas.aliyun.com/doc/install-detail.html
(搜索全量安装)
https://arthas.aliyun.com/download/latest_version?mirror=aliyun
或者rpm,deb包安装
https://github.com/alibaba/arthas/releases
CRUD:
安装:
unzip arthas-bin.zip
启动:
java -jar arthas-boot.jar
(会要求选择监控进程)
dashboard:
展示当前进程的信息;
thread 1会打印线程 ID 1 的栈,通常是 main 函数的线程;
jad反编译:
jad demo.MathGame (方法名)
Post Views: 485