无法在现有服务器上使用 go tool pprof
来源:Golang技术栈
时间:2023-04-08 11:59:56 361浏览 收藏
“纵有疾风来,人生不言弃”,这句话送给正在学习Golang的朋友们,也希望在阅读本文《无法在现有服务器上使用 go tool pprof》后,能够真的帮助到大家。我也会在后续的文章中,陆续更新Golang相关的技术文章,有好的建议欢迎大家在评论留言,非常感谢!
问题内容
我有一个现有的 http 服务器,我想对其进行分析。我已经包含_ "net/http/pprof"
在我的导入中,并且我已经运行了 http 服务器:
router := createRouter() server := &http.Server { Addr: ":8080", Handler: router, ReadTimeout: 15*time.Second, WriteTimeout: 15*time.Second, // MaxHeaderBytes: 4096, } log.Fatal(server.ListenAndServe())
当我尝试访问http://localhost:8080/debug/pprof/
时,我得到404 page not found
.
这就是我go tool pprof
在本地机器上使用时得到的:
userver@userver:~/Desktop/gotest$ go tool pprof http://192.168.0.27:8080/ Use of uninitialized value $prefix in concatenation (.) or string at /usr/lib/go/pkg/tool/linux_amd64/pprof line 3019. Read http://192.168.0.27:8080/pprof/symbol Failed to get the number of symbols from http://192.168.0.27:8080/pprof/symbol userver@userver:~/Desktop/gotest$ go tool pprof http://localhost:8080/debug/pprof/profile Read http://localhost:8080/debug/pprof/symbol Failed to get the number of symbols from http://localhost:8080/debug/pprof/symbol
对于远程客户端也是如此:
MacBookAir:~ apple$ go tool pprof http://192.168.0.27:8080/ Use of uninitialized value $prefix in concatenation (.) or string at /usr/local/Cellar/go/1.3.2/libexec/pkg/tool/darwin_amd64/pprof line 3027. Read http://192.168.0.27:8080/pprof/symbol Failed to get the number of symbols from http://192.168.0.27:8080/pprof/symbol
正确答案
它没有在文档中明确提及,但net/http/pprof
仅将其处理程序注册为http.DefaultServeMux
.
从[来源](https://github.com/golang/go/blob/release- branch.go1.9/src/net/http/pprof/pprof.go#L72-L76):
func init() { http.Handle("/debug/pprof/", http.HandlerFunc(Index)) http.Handle("/debug/pprof/cmdline", http.HandlerFunc(Cmdline)) http.Handle("/debug/pprof/profile", http.HandlerFunc(Profile)) http.Handle("/debug/pprof/symbol", http.HandlerFunc(Symbol)) http.Handle("/debug/pprof/trace", http.HandlerFunc(Trace)) }
如果你没有使用默认的多路复用器,你只需要使用你正在使用的任何多路复用器注册任何/所有你想要的,例如,诸如此类的东西mymux.HandleFunc("鈥�", pprof.Index)
。
或者,您可以使用所示的默认多路复用器在单独的端口(如果需要,也可能仅绑定到本地主机)上侦听。
今天关于《无法在现有服务器上使用 go tool pprof》的内容介绍就到此结束,如果有什么疑问或者建议,可以在golang学习网公众号下多多回复交流;文中若有不正之处,也希望回复留言以告知!
-
439 收藏
-
262 收藏
-
193 收藏
-
188 收藏
-
500 收藏
-
139 收藏
-
204 收藏
-
325 收藏
-
477 收藏
-
486 收藏
-
439 收藏
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 507次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习