`
laziobird
  • 浏览: 24105 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

btrace动态跟踪线上程序

阅读更多
  • 先贴代码,有时间再补充


  • 获取方法消耗时间和调用者

import static com.sun.btrace.BTraceUtils.println;
import static com.sun.btrace.BTraceUtils.str;
import static com.sun.btrace.BTraceUtils.strcat;
import static com.sun.btrace.BTraceUtils.timeMillis;

import static com.sun.btrace.BTraceUtils.*;

import com.sun.btrace.annotations.BTrace;
import com.sun.btrace.annotations.Kind;
import com.sun.btrace.annotations.Location;
import com.sun.btrace.annotations.OnMethod;
import com.sun.btrace.annotations.ProbeClassName;
import com.sun.btrace.annotations.ProbeMethodName;
import com.sun.btrace.annotations.TLS;
@BTrace
public class TraceHelloWorld {

	@TLS
	private static long startTime = 0;

	@OnMethod(clazz = "my.app.test.HelloWorld", method = "execute")
	public static void startMethod(){
		startTime = timeMillis();
	}

	@OnMethod(clazz = "my.app.test.HelloWorld", method = "execute", location = @Location(Kind.RETURN))
	public static void endMethod(){
		println(strcat("the class method execute time=>", str(timeMillis()-startTime)));
		println("-------------------------------------------");
	}

	@OnMethod(clazz = "my.app.test.HelloWorld", method = "execute", location = @Location(Kind.RETURN))
	public static void traceExecute(@ProbeClassName String name,@ProbeMethodName String method,int sleepTime){
		println(strcat("the class name=>", name));
		println(strcat("the class method=>", method));
		println(strcat("the class method params=>", str(sleepTime)));
		println("who call CaseObject.execute :");
		jstack();

	}
}





  • 跟踪出现异常的方法



import com.sun.btrace.annotations.*;
import static com.sun.btrace.BTraceUtils.*;

/**
 * This example demonstrates printing stack trace
 * of an exception and thread local variables. This
 * trace script prints exception stack trace whenever
 * java.lang.Throwable's constructor returns. This way
 * you can trace all exceptions that may be caught and
 * "eaten" silently by the traced program. Note that the
 * assumption is that the exceptions are thrown soon after
 * creation [like in "throw new FooException();"] rather
 * that be stored and thrown later.
 */
@BTrace public class OnThrow {
    // store current exception in a thread local
    // variable (@TLS annotation). Note that we can't
    // store it in a global variable!
    @TLS static Throwable currentException;

    // introduce probe into every constructor of java.lang.Throwable
    // class and store "this" in the thread local variable.
    @OnMethod(
        clazz="java.lang.Throwable",
        method="<init>"
    )
    public static void onthrow(@Self Throwable self) {
        currentException = self;
    }

    @OnMethod(
        clazz="java.lang.Throwable",
        method="<init>"
    )
    public static void onthrow1(@Self Throwable self, String s) {
        currentException = self;
    }

    @OnMethod(
        clazz="java.lang.Throwable",
        method="<init>"
    )
    public static void onthrow1(@Self Throwable self, String s, Throwable cause) {
        currentException = self;
    }

    @OnMethod(
        clazz="java.lang.Throwable",
        method="<init>"
    )
    public static void onthrow2(@Self Throwable self, Throwable cause) {
        currentException = self;
    }

    // when any constructor of java.lang.Throwable returns
    // print the currentException's stack trace.
    @OnMethod(
        clazz="java.lang.Throwable",
        method="<init>",
        location=@Location(Kind.RETURN)
    )
    public static void onthrowreturn() {
        if (currentException != null) {
            jstack(currentException);
            println("=====================");
            currentException = null;
        }
    }
}


  • 跟踪内存

public class PrintMemory {    
   
    /* 
      * 指定内存区域低于一定的界限的时候才内存使用打印数据<br> 也可以指定时间间隔打印内存使用 
      */   
    @OnLowMemory(pool = "Tenured Gen", threshold = 6000000)    
    public static void printMem(MemoryUsage mu) {    
         print("MemoryUsage : ");    
         println(mu);    
         print("FreeMem : ");    
         println(freeMemory());    
         print("Heap:");    
         println(heapUsage());    
         print("Non-Heap:");    
         println(nonHeapUsage());    
     }    
}   



  • 查看死锁情况

import com.sun.btrace.annotations.*;
import static com.sun.btrace.BTraceUtils.*;

/**
 * This BTrace program demonstrates deadlocks
 * built-in function. This example prints 
 * deadlocks (if any) once every 4 seconds.
 */ 
@BTrace public class Deadlock {
    @OnTimer(4000)
    public static void print() {
        deadlocks();        
    }
}
 



  • btrace使用可以看看这个教程
http://blog.csdn.net/qyongkang/article/details/6090497
分享到:
评论

相关推荐

    btrace调试工具

    BTrace是一款强大的Java应用程序动态跟踪工具,它允许开发者在不修改源代码或重新启动应用的情况下,对正在运行的Java应用程序进行实时的性能分析和诊断。这款工具的核心在于其字节码注入技术,它能够动态地在类的...

    btrace.jar

    【btrace.jar】是一款强大的Java在线诊断工具,它允许开发者在不重启应用程序的情况下,实时地对Java程序进行动态追踪和分析。这个工具的核心价值在于它能够帮助我们在生产环境中无侵入地解决性能问题或者追踪特定的...

    如何检测线上代码的运行情况---BTrace使用分享

    BTrace是一款强大的动态代码跟踪工具,它允许我们在运行时无侵入地添加监控代码,以收集应用程序的关键信息。 首先,我们需要理解BTrace的工作原理。BTrace基于Java的字节码注入技术,可以在不修改源代码的情况下,...

    java在线问题排查利器之Btrace&Greys1

    1. Btrace 是一个开源的Java诊断工具,它利用了Java的Instrumentation API和Hotswap技术,可以在运行时动态地插入和修改字节码,从而实现对Java应用程序的实时监控。Btrace允许开发者编写Java脚本来定义需要监控的...

    性能工具之Java调试工具BTrace入门(csdn)————程序.pdf

    BTrace(Bytecode Tracing)是Oracle公司开发的一款强大的动态代码插桩工具,利用Java的Attach API以及Hotswap技术,能够在不中断应用程序运行的情况下,实时地插入自定义的监控代码。这使得开发者可以在不修改源...

    btrace-sr:BTrace 实战学习笔记,其号称“线上问题追踪神器”

    它允许开发者在生产环境中无侵入地对运行中的Java应用程序进行动态跟踪,帮助我们定位和解决性能瓶颈、死锁、内存泄漏等问题,而无需重启应用或修改源代码。这个压缩包“btrace-sr-master”很可能包含了BTrace的相关...

    Java异常诊断greys-anatomy.zip

    基于C/S架构的任务模式甚至能让多人同时远程到同一进程上执行不同的指令、脚本,非常适合团队一起进行线上问题排查与跟踪。Greys采用纯Java编写并留有良好的扩展,如果你有需求,只要你会Java,就可以为你自己...

    性能资料整理.pdf

    它支持各种类型的应用程序,如静态和动态资源、Web动态应用程序等。通过JMeter,可以进行多种性能测试,包括负载测试、功能测试、服务器/网络或对象的性能测试等。7DGroup可能对JMeter进行了深度定制,以便在Grafana...

    Java内存管理问题案例分享_技术大学.pdf

    btrace是一个动态跟踪工具,它可以在不停机的情况下执行跟踪。google-perf-tools提供了Tcmalloc内存分配库,可以提高内存分配的效率。 在内存问题案例部分,文中提到了几个典型的案例,比如OOM(OutOfMemoryError)...

Global site tag (gtag.js) - Google Analytics