Stack trace是指堆栈回溯信息,在当前时间,以当前方法的执行点开始,回溯调用它的方法的方法的执行点,然后继续回溯,这样就可以跟踪整个方法的调用,大家比较熟悉的是JDK所带的jstack
工具,可以把Java的所有线程的stack trace都打印出来。
它有什么用呢?用处非常的大,当应用出现一些状况的时候,比如某个模块不执行, 锁竞争、CPU占用非常高等问题, 又没有足够的log信息可以分析,那么可以查看stack trace信息,看看线程都被阻塞或者运行在那些代码上,然后定位问题所在。
对于Go开发的程序,有没有类似jstack
这样的利器呢,目前我还没有看到,但是我们可以通过其它途径也很方便的输出goroutine的stack trace信息。
本文介绍了几种方法,尤其是最后介绍的方法比较有用。
异常退出情况下输出stacktrace
通过panic
如果应用中有没recover的panic,或者应用在运行的时候出现运行时的异常,那么程序自动会将当前的goroutine的stack trace打印出来。
比如下面的程序,如果你运行会抛出一个panic。
|
|
输出下面的stack trace:
|
|
从这个信息中我们可以看到p.go的第9行是main方法,它在这一行调用m1方法,m1方法在第13行调用m2方法,m2方法在第17行调用m3方法,m3方法在第21出现panic, 它们运行在goroutine 1中,当前goroutine 1的状态是running状态。
如果想让它把所有的goroutine信息都输出出来,可以设置 GOTRACEBACK=1
:
|
|
同样你也可以分析这个stack trace的信息,得到方法调用点的情况,同时这个信息将两个goroutine的stack trace都打印出来了,而且goroutine 4的状态是sleep状态。
Go官方文档对这个环境变量有介绍:
The GOTRACEBACK variable controls the amount of output generated when a Go program fails due to an unrecovered panic or an unexpected runtime condition. By default, a failure prints a stack trace for the current goroutine, eliding functions internal to the run-time system, and then exits with exit code 2. The failure prints stack traces for all goroutines if there is no current goroutine or the failure is internal to the run-time. GOTRACEBACK=none omits the goroutine stack traces entirely. GOTRACEBACK=single (the default) behaves as described above. GOTRACEBACK=all adds stack traces for all user-created goroutines. GOTRACEBACK=system is like “all” but adds stack frames for run-time functions and shows goroutines created internally by the run-time. GOTRACEBACK=crash is like “system” but crashes in an operating system-specific manner instead of exiting. For example, on Unix systems, the crash raises SIGABRT to trigger a core dump. For historical reasons, the GOTRACEBACK settings 0, 1, and 2 are synonyms for none, all, and system, respectively. The runtime/debug package's SetTraceback function allows increasing the amount of output at run time, but it cannot reduce the amount below that specified by the environment variable. See https://golang.org/pkg/runtime/debug/#SetTraceback.
你可以设置 none
、all
、system
、single
、crash
,历史原因, 你可以可是设置数字0
、1
、2
,分别代表none
、all
、system
。
通过SIGQUIT信号
如果程序没有发生panic,但是程序有问题,"假死“不工作,我们想看看哪儿出现了问题,可以给程序发送SIGQUIT
信号,也可以输出stack trace信息。
比如下面的程序:
|
|
你可以运行kill -SIGQUIT <pid>
杀死这个程序,程序在退出的时候输出strack trace。
正常情况下输出stacktrace
上面的情况是必须要求程序退出才能打印出stack trace信息,但是有时候我们只是需要跟踪分析一下程序的问题,而不希望程序中断运行。所以我们需要其它的方法来执行。
你可以暴漏一个命令、一个API或者监听一个信号,然后调用相应的方法把stack trace打印出来。
打印出当前goroutine的 stacktrace
通过debug.PrintStack()
方法可以将当前所在的goroutine的stack trace打印出来,如下面的程序。
|
|
打印出所有goroutine的 stacktrace
可以通过pprof.Lookup("goroutine").WriteTo
将所有的goroutine的stack trace都打印出来,如下面的程序:
|
|
较完美的输出 stacktrace
你可以使用runtime.Stack
得到所有的goroutine的stack trace信息,事实上前面debug.PrintStack()
也是通过这个方法获得的。
为了更方便的随时的得到应用所有的goroutine的stack trace信息,我们可以监听SIGUSER1
信号,当收到这个信号的时候就将stack trace打印出来。发送信号也很简单,通过kill -SIGUSER1 <pid>
就可以,不必担心kill
会将程序杀死,它只是发了一个信号而已。
|
|
输出结果很直观,方便检查。
|
|
当然,这段代码也不是我原创的,这是docker代码库中的一段代码,很简单,也很强大。
参考文档
- http://stackoverflow.com/questions/19094099/how-to-dump-goroutine-stacktraces
- https://golang.org/pkg/runtime/
有疑问加站长微信联系(非本文作者)