Re: Performance monitoring

2009-12-10 Thread Rory Hart
On Thu, Dec 10, 2009 at 5:23 PM, Mikhail Korobov <kmik...@googlemail.com>wrote: > Performance monitoring doesn't have to be related to django itself. > There are external projects that cant do performance monitoring (CPU, > i/o, memory usage over time). You may g

Re: Performance monitoring

2009-12-09 Thread Mikhail Korobov
Performance monitoring doesn't have to be related to django itself. There are external projects that cant do performance monitoring (CPU, i/o, memory usage over time). You may give munin (http:// munin.projects.linpro.no/) a chance. On Dec 10, 7:43 am, Kegan Gan <ke...@kegan.info> wrote

Re: Performance monitoring

2009-12-09 Thread Sam Walters
You can always place some more performance testing code inside your views: import time t = time.time() search_time=0.00 # #place some code which hits the database here # search_time+=time.time()-t search_time="%.3f"%(search_time) This does not test the memory footprint of

Re: Performance monitoring

2009-12-09 Thread Andy McKay
On 09-12-09 8:43 PM, Kegan Gan wrote: > Thanks for reply, Andy. > > I am aware of django-debug-toolbar. I am looking something to run with > production. > > How do people monitor Django application performance in production > environment today? Hmm I guess if I knew what you were looking for I

Re: Performance monitoring

2009-12-09 Thread Kegan Gan
Thanks for reply, Andy. I am aware of django-debug-toolbar. I am looking something to run with production. How do people monitor Django application performance in production environment today? Thanks. On Dec 10, 12:28 pm, Andy McKay wrote: > On 09-12-09 6:43 PM, Kegan Gan

Re: Performance monitoring

2009-12-09 Thread Andy McKay
On 09-12-09 6:43 PM, Kegan Gan wrote: > Google App Engine provides a rather extensive set of tools to monitor > the performance of your applications running in App Engine. Is there > something similar for Django? Not that I know of. There's django-debug-toolbar and a quick hack I wrote to track

Performance monitoring

2009-12-09 Thread Kegan Gan
Hi, Google App Engine provides a rather extensive set of tools to monitor the performance of your applications running in App Engine. Is there something similar for Django? Thanks. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to

Re: Announce: Django Performance Monitoring

2006-07-10 Thread Ian Holsman
Hi Favo, It's free if you work on a OSS project. regards Ian On 11/07/2006, at 12:21 AM, favo wrote: > > Ask very carefully, Do you want to make it OS? > If you feel not happy with the question, just ignore it please. > > > > --~--~-~--~~~---~--~~ You received

Re: Announce: Django Performance Monitoring

2006-07-10 Thread favo
Ask very carefully, Do you want to make it OS? If you feel not happy with the question, just ignore it please. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email

Re: Announce: Django Performance Monitoring

2006-07-09 Thread Ian Holsman
Thanks Jeremy. I'll add that feature shortly. On 10/07/2006, at 6:06 AM, Jeremy Dunck wrote: > > On 7/9/06, Ian Holsman <[EMAIL PROTECTED]> wrote: >> you can find out more about it here: http://zilbo.com/@perfmon > > On the log detail screen, and if the response MIME is > browser-renderable

Re: Announce: Django Performance Monitoring

2006-07-09 Thread Jeremy Dunck
On 7/9/06, Ian Holsman <[EMAIL PROTECTED]> wrote: > you can find out more about it here: http://zilbo.com/@perfmon On the log detail screen, and if the response MIME is browser-renderable (html or so), you can throw the response content into an IFrame using a data URL for added goodness:

Announce: Django Performance Monitoring

2006-07-09 Thread Ian Holsman
Perform is a tool to help you diagnose your performance and QA issues within your Django application.you can find out more about it here: http://zilbo.com/@perfmonI've decided to charge $20 for it. People using it for debugging open source projects can get it for free. regardsIan