Re: Memory profiling a Pyramid app

2012-05-17 Thread Vlad K.
Thanks for all your replies. I've also tried pympler and looks like nice alternative to heapy(). .oO V Oo. -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to pylons-discuss@googlegroups.com. To unsubscri

Re: Memory profiling a Pyramid app

2012-05-17 Thread Jason
I used objgraph ( http://mg.pov.lt/objgraph/ ) recently to find a memory leak in an application (turns out debugtoolbar was holding references to 10s of sqlalchemy objects). I didn't use all the features but I saw a count of the different type of objects and then you can also graph the refe

Re: Memory profiling a Pyramid app

2012-05-17 Thread Marius Gedminas
On Thu, May 17, 2012 at 01:43:58AM +0200, Vlad K. wrote: > How? Which tools? > > I'm trying to use heapy but I'm fighting both with lack of proper > documentation, and with the fact that I need to profile a wsgi app > run behind uwsgi. Even if I run with pserve (1.3) I have no idea how > to use he

Memory profiling a Pyramid app

2012-05-16 Thread Vlad K.
How? Which tools? I'm trying to use heapy but I'm fighting both with lack of proper documentation, and with the fact that I need to profile a wsgi app run behind uwsgi. Even if I run with pserve (1.3) I have no idea how to use heapy's interactive features. What else would you suggest to me