Created
March 6, 2013 06:34
-
-
Save mattetti/5097206 to your computer and use it in GitHub Desktop.
test middleware for Ruby 2.0 logging the method dispatches going on when a request is being handled.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class TracePoint | |
class Middleware | |
def initialize(app) | |
@app = app | |
end | |
def call(env) | |
stats = {} | |
trace = TracePoint.new(:call) do |tp| | |
stats[tp.defined_class] ||= {} | |
stats[tp.defined_class][tp.method_id] ||= 0 | |
stats[tp.defined_class][tp.method_id] += 1 | |
end | |
trace.enable | |
response = @app.call(env) | |
trace.disable | |
puts env['PATH_INFO'] | |
puts "#{stats.keys.size} classes used" | |
puts "#{stats.map{|k,v| v.keys}.flatten.size} methods used" | |
puts "#{stats.map{|k,v| v.values}.flatten.sum} methods dispatched" | |
#File.open("tmp/#{env['PATH_INFO'].gsub('/', '_')}_req_stats.json", "w"){|f| f << stats.to_json } | |
puts "" | |
response | |
end | |
end | |
end |
I got the following error from my Rails application when I use this code.
ERROR ArgumentError: wrong number of arguments (1 for 5)
/Users/xdhe/Documents/FreeWheel/rpm/ui/payment/lib/tracepoint_middleware.rb:12:in `initialize'
Can you give me some help? Thanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
to use in Rails, add the following to the application.rb file: