BTrace是SUN Kenai云计算开发平台下的一个开源项目。旨在为java提供安全可靠的动态跟踪分析工具。
Btrace基于动态字节码修改技术(Hotswap)来实现运行时java程序的跟踪和替换。
Btrace的脚本是用纯java编写的,基于一套官方提供的annotation,使跟踪逻辑实现起来非常简单。简单来说,就是能在不改动当前程序的情况下,运行时的去监控Java程序的执行状况,例如可以做到内存状况的监控、方法调用的监控等等。网站上有详细说明
http://kenai.com/projects/btrace/pages/UserGuide
首先从http://kenai.com/projects/btrace/downloads/directory/releases%252Frelease-1.1 根据自己的操作系统下相应的二进制包,包很小不超过1M。我的机子是windows的,在bin目录下有几个bat,我把bin目录加到Path路径,这样以后编译和执行就会方便点。bat的内容都很简单,可以打开看看,就会发现为什么不用配置classpath,还是可以跑起来。就用BlueDavy的例子来说明吧。
// import all BTrace annotations import com.sun.btrace.annotations.*; // import statics from BTraceUtils class import static com.sun.btrace.BTraceUtils.*; @BTrace public class MethodResponseTime { @TLS private static long startTime; @OnMethod(clazz="net.zdsoft.eis.stusys.student.action.StudentInfoAction", method="list") public static void onCall(){ println("enter this method"); startTime=timeMillis(); } @OnMethod(clazz="net.zdsoft.eis.stusys.student.action.StudentInfoAction",method="list",location=@Location(Kind.RETURN)) public static void onReturn(){ println("method end!"); println(strcat("Time taken ms",str(timeMillis()-startTime))); } }
上面这段代码的作用是监视net.zdsoft.eis.stusys.student.action.StudentInfoAction这个类中的list方法的执行时间。
下面就来看看怎么监视
首先启动Tomcat让你的服务跑起来,在命令行用btracec MethodResponseTime.java ,编译这个文件,然后运行btrace 2300 MethodResponseTime.java来启动监视。注意2300是你要监视的java程序(这里就是Tomcat服务)的进程PID,windows下可以通过任务管理器看到的。
现在点击会触发上面配置的action中list方法的功能,就能在命令行看到输出的结果了。
E:/BTrace_Demo>btrace 2300 MethodResponseTime.java
enter this method
method end!
Time taken ms32
enter this method
method end!
Time taken ms32
enter this method
method end!
Time taken ms15
enter this method
其他应用看以参考官网的介绍,和目录下samples文件夹中的例子。