pprof的使用

type
status
date
slug
summary
tags
category
icon
password
Blocked by
Blocking
AI summary
 
 

什么是pprof

pprof 是 Go 提供的性能剖析工具,允许开发者查看 CPU、内存、Goroutine 以及其他资源的使用情况

启动pprof

 
一旦你的应用程序运行并且 pprof 启用后,你可以通过浏览器或命令行工具访问 pprof 数据。常见的端点包括:
  • CPU profile: http://localhost:6060/debug/pprof/profile?seconds=30
  • Heap profile: http://localhost:6060/debug/pprof/heap
  • Goroutine profile: http://localhost:6060/debug/pprof/goroutine
  • Block profile: http://localhost:6060/debug/pprof/block
 

使用pprof排查heap饱满

模拟heap爆满的场景,github地址为 codeCollection/pprof at main · Forrest-Tao/codeCollection (github.com) 其中的文件可以自己模拟一个非常大的文件
 
观察系统 内存变化
查看具体的heap.out 文件
 
 
 
 

TOOD 网页可视化

 

TODO 问题具体分析过程

 

ref

 
性能分析之go pprof工具使用
1. go pprof工具简介 在 Go 语言中,PProf 是用于可视化和分析性能分析数据的工具,PProf 以 profile.proto 读取分析样本的集合,并生成报告以可视化并帮助分析数据(支持文本和图形报告)。 runtime/pprof:采集程序(非 Server)的指定区块的运行数据进行分析。 net/http/pprof:基于 HTTP Server 运行,并且可以采集运行时数据进行分析。 1.1. 分析内容 cpu(CPU Profiling): $HOST/debug/pprof/profile,默认进行 30s 的 CPU Profiling,得到一个分析用的 profile 文件 block(Block Profiling):$HOST/debug/pprof/block,查看导致阻塞同步的堆栈跟踪 goroutine:$HOST/debug/pprof/goroutine,查看当前所有运行的 goroutines 堆栈跟踪 heap(Memory Profiling): $HOST/debug/pprof/heap,查看活动对象的内存分配情况 mutex(Mutex Profiling):$HOST/debug/pprof/mutex,查看导致互斥锁的竞争持有者的堆栈跟踪 threadcreate:$HOST/debug/pprof/threadcreate,查看创建新OS线程的堆栈跟踪 1.2. 分析方式 go tool pprof命令交互方式 web网页方式查看 http://ip:port/debug/pprof/ 2. 代码配置pprof 2.1. Gin框架集成pprof 调用github.com/gin-contrib/pprof,执行pprof.Register(*gin.Engine)。 示例代码: import ( "github.com/gin-contrib/pprof" "github.com/gin-gonic/gin" ) type server struct { conf *config.Config gin *gin.Engine } func (s *server) setupServer() *gin.Engine { // 注册pprof pprof.
Prev
常用限流组件及其实现
Next
sqlite内存模式下的性能测试
Loading...
Article List