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:
- I don't like to explicitly require everything.
- I should not need to iterate over subclasses.
What's a good way to instrument methods in this kind of situation?