Description
I try to use pprof to profile my programme, and i am using
import _ net/http/pprof to add /debug/pprof endpoints in my service.
access in browser:
http://ip:port/debug/pprof/
then i will have the following page:
Everytime when i try to refresh this page, the number in the boxes keep increase!!
When i follow the link: http://ip:port/debug/pprof/heap?debug=1
i will see the following:
the 4 numbers here :
2508: 273338776 [4733405: 12257136096]
means inuse_objects: inuse_space [all_objects: alloc_space], am i right?
Question
What do this two numbers in boxes actually mean?
Does the "heap count" has any relation with the inuse_objects
?