Sha256: 86849850c696f6b20e0d5455f1607b5eff54b488cfc20e7846c4976156e1e326
Contents?: true
Size: 1.91 KB
Versions: 2
Compression:
Stored size: 1.91 KB
Contents
Fiveruns::Dash.register_recipe :merb, :url => 'http://dash.fiveruns.com' do |recipe| recipe.time :response_time, :method => 'Merb::Request#dispatch_action', :context => lambda { |request, *args| [ [], [:action, "#{request.controller}##{request.params[:action]}"] ] } recipe.counter :requests, :incremented_by => 'Merb::Request#dispatch_action', :context => lambda { |request, *args| [ [], [:action, "#{request.controller}##{request.params[:action]}"] ] } # Mark re-entrant so this doesn't get counted multiple times if nested # TODO: Track context (needed for barlist 'detail') recipe.time :render_time, :method => 'Merb::RenderMixin#render', :reentrant => true # ============== # = EXCEPTIONS = # ============== merb_exceptions = Merb::ControllerExceptions.constants.map do |name| "Merb::ControllerExceptions::#{name}" end recipe.ignore_exceptions do |ex| merb_exceptions.include?(ex.class.name) end recipe.add_exceptions_from 'Merb::Request#dispatch_action' do |ex, request| info = {:name => "#{ex.class.name} in #{request.controller}##{request.params[:action]}"} # TODO: We shouldn't need to double-serialize to_json -- BW begin info[:params] = request.params.to_json rescue Merb.logger.warn "Could not capture request params for exception" end begin info[:environment] = request.env.to_json rescue Merb.logger.warn "Could not capture request env for exception" end # TODO: capture session # TODO: capture headers info end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fiveruns-dash-merb-0.7.0 | lib/fiveruns/dash/merb/recipe.rb |
fiveruns-dash-merb-0.8.0 | lib/fiveruns/dash/merb/recipe.rb |