cloudwego / goref

Go heap object reference analysis tool
Apache License 2.0
538 stars 17 forks source link

Goref

WebSite License

Goref is a Go heap object reference analysis tool based on delve.

It can display the space and object count distribution of Go memory references, which is helpful for efficiently locating memory leak issues or viewing persistent heap objects to optimize GC overhead.

Installation

$ go install github.com/cloudwego/goref/cmd/grf@latest

Usage

Attach to a running process with its PID, and then use go pprof tool to open the output file.

$ grf attach ${PID}
successfully output to `grf.out`
$ go tool pprof -http=:5079 ./grf.out

The opened HTML page displays the reference distribution of the heap memory. You can choose to view the "inuse space" or "inuse objects".

image

DWARF parsing of closure type was not supported before Go 1.23, so sub objects of wpool.task cannot be displayed.

View flame graph of inuse objects:

image

It also supports analyzing core files, e.g.

$ grf core ${execfile} ${corefile}
successfully output to `grf.out`

Go Version Constraints

Docs

How it Works | 实现原理

Credit

Thanks to Delve for providing powerful golang debugger.