Ben Frederickson
Ben Frederickson
Thanks for sharing! Thats a great article
We're using the [inferno](https://github.com/jonhoo/inferno) project to write out these SVG files - I think to fix this issue you'll have to raise an issue there. However, I don't see this...
Thanks for your patience on this - It seems like your test program is almost always idle (as shown by running the ```--idle``` option). This means that any false positives...
The option to sample native threads can be quite a bit more intensive than without - the easiest thing for you to do is either remove the '-n' flag to...
There was a dev release with OSX native profling: ```pip install py-spy==0.2.0.dev4``` will install the last version. It didn't work all that well though, so I removed it =(. It...
For OSX - I had some code that attempted to read in the the compact unwinding format for OX, but I was seeing fairly high error rates and removed it...
Not right now =( We merge the native stack traces into python frames - but not vice versa. You'll have to profile with other native profiling tools like perf etc...
I'm not totally opposed to communicating through processes / signals - but I think it might be cleaner for py-spy to have a python api that will let you control...
I think this is a great idea! Not only will this let us profile native extensions, this will also let us figure out reliably if the thread is idle or...
If it's GC time you might be able to see it by enabling native stack traces - we include certain python functions like GC in the stack traces. Do you...