服务发现旨在解决此类问题。一个简单的解决方案是为每个 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 脚本,仅供参考。