You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
arthas/tutorials/katacoda/arthas-basics-cn/thread.md

291 B

thread 1{{execute interrupt}} 命令会打印线程ID 1的栈。

Arthas支持管道可以用 thread 1 | grep 'main('{{execute T2}} 查找到main class

可以看到main classdemo.MathGame

$ thread 1 | grep 'main('
    at demo.MathGame.main(MathGame.java:17)