获取运行在JRE Docker镜像上的Java容器的线程转储
原文英文,约200词,阅读约需1分钟。发表于: 。Given an webapp running with a JRE-based docker image in Kubernetes cluster, example: tomcat:9.0-jre11-temurin, then getting the thread dump is not easy as the JRE-based docker image does not...
在Kubernetes集群中,使用基于JRE的Docker镜像(如tomcat:9.0-jre11-temurin)获取线程转储较为困难。可以使用Andrei Pangin的jattach工具,先在容器中下载jattach,然后通过终端生成并保存线程转储,最后使用jstack.review工具进行分析。