⛺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
Prev
常用限流组件及其实现
Next
sqlite内存模式下的性能测试
Loading...