时间:2023-01-25 10:06:56 | 栏目:Golang | 点击:次
1.使用ginpprof
import "github.com/DeanThompson/ginpprof" router := gin.Default() ginpprof.Wrap(router)
2.使用pprof
只需要在main.go中引入:_ “net/http/pprof”
访问:127.0.0.1:8080/debug/pprof
/debug/pprof/profile:访问这个链接会自动进行 CPU profiling,持续 30s,并生成一个文件供下载 /debug/pprof/block:Goroutine阻塞事件的记录。默认每发生一次阻塞事件时取样一次。 /debug/pprof/goroutines:活跃Goroutine的信息的记录。仅在获取时取样一次。 /debug/pprof/heap: 堆内存分配情况的记录。默认每分配512K字节时取样一次。 /debug/pprof/mutex: 查看争用互斥锁的持有者。 /debug/pprof/threadcreate: 系统线程创建情况的记录。 仅在获取时取样一次。
1.设置环境变量
set GODEBUG=gctrace=1
2.术语:
mark:标记阶段。
markTermination:标记结束阶段。
mutator assist:辅助 GC,是指在 GC 过程中 mutator 线程会并发运行,而 mutator assist 机制会协助 GC 做一部分的工作。
heaplive:在 Go 的内存管理中,span 是内存页的基本单元,每页大小为 8kb,同时 Go 会根据对象的大小不同而分配不同页数的 span,而 heaplive 就代表着所有 span 的总大小。
dedicated / fractional / idle:在标记阶段会分为三种不同的 mark worker 模式,分别是 dedicated、fractional 和 idle,它们代表着不同的专注程度,其中 dedicated 模式最专注,是完整的 GC 回收行为,fractional 只会干部分的 GC 行为,idle 最轻松
P:指处理器
3.含义
gc 4 @0.254s 5%: 2.0+1.0+9.9 ms clock, 16+0/2.0/2.0+79 ms cpu, 4->4->0 MB, 5 MB goal, 8 P
查看电脑的配置:
scvg4: inuse: 111, idle: 54, sys: 187, released: 0, consumed: 198 (MB)