4 lines
98 B
Bash
4 lines
98 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
curl http://localhost:8081/debug/pprof/heap > heap.0.pprof
|
||
|
go tool pprof heap.0.pprof
|