[Rails] Re: Log analyzer

2008-10-20 Thread Craig Demyanovich
I don't have any experience with general log analyzers. For performance, one option is New Relic's RPM [ http://newrelic.com/ ]. They offer free and paid services. I've also used two nice exception loggers, Hoptoad [ http://hoptoadapp.com/ ] and Exceptional [ http://getexceptional.com/ ]. I like

[Rails] Re: Log analyzer

2008-10-20 Thread Fernando Perez
Thank you for the links. Newrelic is exactly what I was looking for. -- Posted via http://www.ruby-forum.com/. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To post to this group, send

[Rails] Re: Log analyzer

2008-10-20 Thread Fernando Perez
Does anyone use rawk? I am trying to get the group by action feature, but it doesn't work in Rails 2.1.1 as redefining the Logger class no longer works as demonstrated in the help. Any idea on how to do that today? -- Posted via http://www.ruby-forum.com/.

[Rails] Re: Log analyzer

2008-10-20 Thread Fernando Perez
Cool I found a patch to do that! Here is the code: http://pastie.org/171954 Credits go to Peter de Bert. Now rawk is a fantastic Rails log analyzing tool. -- Posted via http://www.ruby-forum.com/. --~--~-~--~~~---~--~~ You received this message because you

[Rails] Re: Log analyzer

2008-10-20 Thread Fernando Perez
I am playing with newrelic, but there is something bothering me: the graphs don't take into account the number of times an action has been called, it only looks at its average response time. Well this is a wrong approach. I have an action that takes like 3x more time than any other action,

[Rails] Re: Log analyzer

2008-10-20 Thread Craig Demyanovich
On Mon, Oct 20, 2008 at 4:55 PM, Fernando Perez [EMAIL PROTECTED] wrote: I am playing with newrelic, but there is something bothering me: the graphs don't take into account the number of times an action has been called, it only looks at its average response time. Well this is a wrong

[Rails] Re: Log analyzer

2008-10-20 Thread Fernando Perez
I guess it is fairly easy for RPM to count the number of times an action was triggered. It's probably part of their paid service. I am still in search for a good profiling tool that can tell me in a clear manner, where my action is spending its time. On my root page, I guess it is all these

[Rails] Re: Log analyzer

2008-10-20 Thread Craig Demyanovich
On Mon, Oct 20, 2008 at 6:30 PM, Fernando Perez [EMAIL PROTECTED] wrote: I guess it is fairly easy for RPM to count the number of times an action was triggered. It's probably part of their paid service. I am still in search for a good profiling tool that can tell me in a clear manner,