Re: [sqlalchemy] [ANN] SQLTap - SQL profiling and introspection for SQLAlchemy applications

2014-03-11 Thread Alan Shreve
Not out of the box, but it would be pretty easy to dump them all into sqllite or another other sql database and query them out when you want a report. And a little extra logic to not profile those queries so you don't recurse infinitely. Would love a patch! With sqlalchemy, it's pretty easy to

Re: [sqlalchemy] [ANN] SQLTap - SQL profiling and introspection for SQLAlchemy applications

2014-03-11 Thread limodou
It's nice. On Wed, Mar 12, 2014 at 8:28 AM, Alan Shreve a...@inconshreveable.comwrote: Not out of the box, but it would be pretty easy to dump them all into sqllite or another other sql database and query them out when you want a report. And a little extra logic to not profile those queries

Re: [sqlalchemy] [ANN] SQLTap - SQL profiling and introspection for SQLAlchemy applications

2014-03-10 Thread Thierry Florac
That sounds really great. Simple question : is there any way to use SQLTap in a multi-processes WSGI environment ?? Best regards, Thierry 2014-03-10 5:28 GMT+01:00 Michael Bayer mike...@zzzcomputing.com: hey that looks pretty nice, ill give it a shoutout. On Mar 9, 2014, at 9:21 PM, Alan

[sqlalchemy] [ANN] SQLTap - SQL profiling and introspection for SQLAlchemy applications

2014-03-09 Thread Alan Shreve
A few years ago, I built SQLTap, a simple library to hook into SQLAlchemy and pull out statistics and information on the queries you ran. This last couple days I've overhauled it an updated it to make it more useful! You basically just start the profiler and then it can dump out nice browsable

Re: [sqlalchemy] [ANN] SQLTap - SQL profiling and introspection for SQLAlchemy applications

2014-03-09 Thread Michael Bayer
hey that looks pretty nice, ill give it a shoutout. On Mar 9, 2014, at 9:21 PM, Alan Shreve a...@inconshreveable.com wrote: A few years ago, I built SQLTap, a simple library to hook into SQLAlchemy and pull out statistics and information on the queries you ran. This last couple days I've