Re: [go-nuts] pprof samples

2020-04-23 Thread asaxena via golang-nuts
The program is indeed IO and network bound so it does seem the CPU usage is minimal. Thanks for all the pointers for tracing and analyzing !! On Wednesday, April 22, 2020 at 2:45:57 PM UTC-7, Robert Engels wrote: > > pprof is not only cpu profiling - it is the same tracing infrastructure > use

Re: [go-nuts] pprof samples

2020-04-22 Thread Robert Engels
pprof is not only cpu profiling - it is the same tracing infrastructure used in the go analyzer. > On Apr 22, 2020, at 2:28 PM, David Finkel wrote: > >  > > >> On Mon, Apr 20, 2020 at 8:35 PM asaxena via golang-nuts >> wrote: >> Hi, >> >> I am trying CPU profiling a program that runs for

Re: [go-nuts] pprof samples

2020-04-22 Thread David Finkel
On Mon, Apr 20, 2020 at 8:35 PM asaxena via golang-nuts < golang-nuts@googlegroups.com> wrote: > Hi, > > I am trying CPU profiling a program that runs for an hour. However when I > start pprof it says Total samples are only for 1.32 min. Why are the > samples not collected for the whole duration o