go/profile

Profiling

Profile Go programs

go
profile
performance

Command

go tool pprof cpu.prof

Explanation

Profile Go programs to analyze performance bottlenecks and memory usage.

Examples

Analyze CPU profile

go tool pprof cpu.prof

Analyze memory profile

go tool pprof mem.prof

Generate CPU profile

go test -cpuprofile=cpu.prof