Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Rails app where I want to instrument some methods with New Relic.

class Base         # in /lib/base.rb
  def slow_method
  end
end

class Sub < Base   # in /lib/sub.rb
  def slow_method
  end
end

I instrumented that like so:

# in /lib/base.rb
class Base
  def self.inherited(other)
    add_method_tracer :slow_method
  end
end

This looks good, but does not work. The tracer method is added before slow_method itself is defined.

# in config/initializers/tracers.rb
# attempt #1

Dir["lib/**/*.rb"].each { |f| require f } # need to require everything

Base.subclasses.each do |klass|
  klass.class_eval do
    add_method_tracer :slow_method
  end
end

This works. But it is ugly:

  1. I don't like to explicitly require everything.
  2. I should not need to iterate over subclasses.

What's a good way to instrument methods in this kind of situation?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.