Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The ruby-prof and pprof.rb libraries is useful but in my mind seem to give alot of unnecessary information (by not letting me filter out all of the rails code). What would be great would be to run a profiler at the class level, like:

simple_profiler -c SomeClass 

and then have a report that starts at that class and works its way through the code and shows you how long (by time or %) and number of calls for each class, each method, and each line. Does something like this exist or should I get started creating this gem? :)

share|improve this question
This question was answered for ruby-prof in stackoverflow.com/questions/2241491/… – Andrew Grimm Jun 14 '11 at 23:55

1 Answer

I think ruby-prof can eliminate methods, though it was someone else's patch, so I haven't actually ever used it:

https://github.com/rdp/ruby-prof/blob/master/test/method_elimination_test.rb

share|improve this answer
I've used it, and it works in eliminating the specified method. I haven't actually checked that all the other values remain consistent. – Andrew Grimm Jun 14 '11 at 23:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.