Hi, This doesn't answer your question but usually when I need to profile our app, I first use expvar to report different internal stats like what the app is doing (how many records is it walking from the db, any batch process, etc), send those to datadog (any monitoring works fine) and then I know "which code" is the one that is causing high CPU/memory.
Then it's a matter to writing simple go benchmark code (sometimes even talking to the db, I don't bother with mocking) and use pprof on the benchmark code Hope that helps. Diego On Monday, April 20, 2020 at 8:36:00 PM UTC-4, Aditya Saxena 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 of the program ? Is there a > missing setting I need to enable ? > > Duration: 1.14hrs, Total samples = 1.32mins ( 1.94%) > > Thanks. > -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/golang-nuts/46d295cb-3fdf-47aa-9ffb-3905ecef06d0%40googlegroups.com.