1

现在,我使用 go tool pprof 来分析 Go 应用程序,如下所示:

go tool pprof http://localhost:8080/debug/pprof/profile

我想在一个在未知端口上运行 http 服务器的任意 Go 进程上使用 pprof 工具。我拥有的关于该进程的唯一信息是它的 PID。我需要做两件事之一:

  • 从它的 PID 中获取 Go 进程的端口号。
  • 直接分析运行过程。例如,go tool pprof 10303PID 为 10303 之类的东西。

这些中的任何一个都可以吗?

4

1 回答 1

0

服务发现旨在解决此类问题。一个简单的解决方案是为每个 PID 创建一个 tmp 文件,将每个端口写入相应的文件。并在需要时读取端口go tool pprof

http.ListenAndServe("localhost:" + PORT, nil)
tmpFilePath := filePath.Join(os.TempDir(), "myport_" + strconv.FormatInt(os.Getpid(), 10))
f, _ := os.OpenFile(tmpFilePath, os.O_RDWR|os.O_CREATE|os.O_EXCL, 0600)
f.Write(byte[](strconv.FormatInt(PORT, 10)))
f.Close()

在 go tool prof bash 中: go tool http://localhost:`cat /tmp/myport_10303`/debug/pprof/profile

未经实际测试,可能有一些语法错误

更新:

另一种不改变go源的方法是,使用像netstat/lsof这样的bash命令来找出go进程的监听端口。喜欢:

netstat -antp | grep 10303| grep LISTEN | awk '{ print $4 }' | awk -F: '{print $2}'

我认为不是最好的 bash 脚本,仅供参考。

于 2015-07-08T00:54:49.003 回答