1. 下载pprof文件到容器
curl http://<ip>:<port>/debug/pprof/heap -o heap
2. 容器文件拷到本地
kubectl cp <podName>:<容器工作路径>/heap <本地保存路径> -c <容器名>
注意<容器工作路径>如果用绝对路径的话最前面的“/”要去掉,不然会报错tar: Removing leading `/' from member names
如果还报错tar: <容器工作路径>/heap: Cannot stat: No such file or directory
tar: Exiting with failure status due to previous errors,就把“<容器工作路径>/”也去掉,变成kubectl cp <podName>:heap <本地保存路径> -c <容器名>
这个工具很不稳定,一会儿好不会儿不好的,不知道为什么
3. pprof分析文件
go tool pprof <本地保存路径>
k8s容器内程序pprof分析
于 2023-08-07 16:22:49 首次发布