hprof icon indicating copy to clipboard operation
hprof copied to clipboard

Heap profile reader for Go

Results 3 hprof issues
Sort by recently updated
recently updated
newest added

Update the reader to support the newest heapdump format, based on https://github.com/golang/go/wiki/heapdump15-through-heapdump17 Trying to figure out how to get the type information of objects.

``` marko@fedora-server:~/goprojects/src/badoo/bumpd (build_bumpd_1.2.0) $ go get -u github.com/randall77/hprof/dumptodot marko@fedora-server:~/goprojects/src/badoo/bumpd (build_bumpd_1.2.0) $ dumptodot heapdump $(which bumpd) > heap.dot panic: interface conversion: interface is nil, not string goroutine 16 [running]: runtime.panic(0x56c180, 0xc2084fbec0)...

In a TagAllocSample section, eventually a uintvar of arbitrarily large value is read and then makeslice() fails with size out of range: ``` panic: runtime error: makeslice: len out of...