iarthas
前阵子对阿尔萨斯的原理进行一点探究,对它的原理总结整理如下:通过仿写一个简易版的阿尔萨斯,来加深对它的认识。
i_arthas 是模仿阿里开源的阿尔萨斯写的小工具。整体技术上采用 Java agent 对字节码的加载进 行拦截干涉,利用 ASM/ASM Byte Viewer 实现目标类字节码的加强,通过 Java attach 实现不同 虚拟机进程间的通信,做到了虚拟机层面上的 AOP。
整体实现了简易版的 redefine(热替换)、 watch(方法监控)、trace(方法链路追踪)、timeTunnel(流量采集与回放)等功能。
代码上传至github : https://github.com/CallMeJiaGu/iarthas
实现思路
阿尔萨斯 原理探究 仿写arthas-TimeTunnel 流量采集
大体效果
timetunnel 流量采集:
2
1
-------------------
开始采集方法:doAdd
2
开始采集方法:doDelet
1
-------------------
image
watch 方法监控
4
1
-------------------
监控当前方法:doAdd
入参:
参数类型-- int@1
参数类型-- String@abc
参数类型-- long@11
参数类型-- Lagent/Job;@agent.Job@7adf9f5f
参数类型-- Lagent/Main;@agent.Main@85ede7b
参数类型-- double@0.11
出参:
参数类型-- int@4
4
1
-------------------
trace 方法子调用链路追踪
3
1
-------------------
doAdd
-|javalangThread@sleep
--|method Cost: 1000.0282599999999 ms
-|agentJob@test
--|method Cost: 1000.0648309999999 ms
almost time cost:
--|method Cost: 2005.3643539999998 ms
3
1
-------------------
redefine 热加载
Hello World!
Bye Bye
-------------------
Hello World!
Bye Bye
-------------------
Hello World!
Bye Bye
fix good Bye!!
网友评论