Re: [go-nuts] Profiling a CGO application - pprof alternatives

2021-07-05 Thread Ian Lance Taylor
On Mon, Jul 5, 2021 at 4:24 PM 'Tal Lichtenstein' via golang-nuts wrote: > > I am trying to pinpoint a performance issue with a go package that uses a > large 3rd party C++ library we interface with using CGO. > > Tried these options: > > 1. Go profiler - doesn't see anything beyond function runt

[go-nuts] Profiling a CGO application - pprof alternatives

2021-07-05 Thread 'Tal Lichtenstein' via golang-nuts
I am trying to pinpoint a performance issue with a go package that uses a large 3rd party C++ library we interface with using CGO. Tried these options: 1. *Go profiler* - *doesn't see anything beyond function runtime.cgocall. *This has already been discussed here