module OneApm::Agent::Instrumentation::Sinatra::Ignorer
Public Class Methods
should_ignore?(app, type)
click to toggle source
# File lib/one_apm/inst/framework/sinatra/ignorer.rb, line 9 def self.should_ignore?(app, type) return false if !app.settings.respond_to?(:oneapm_ignores) app.settings.oneapm_ignores[type].any? do |pattern| pattern.match(app.request.path_info) end end
Public Instance Methods
oneapm_ignore(*routes)
click to toggle source
# File lib/one_apm/inst/framework/sinatra/ignorer.rb, line 17 def oneapm_ignore(*routes) set_oneapm_ignore(:routes, *routes) end
oneapm_ignore_apdex(*routes)
click to toggle source
# File lib/one_apm/inst/framework/sinatra/ignorer.rb, line 21 def oneapm_ignore_apdex(*routes) set_oneapm_ignore(:apdex, *routes) end
oneapm_ignore_enduser(*routes)
click to toggle source
# File lib/one_apm/inst/framework/sinatra/ignorer.rb, line 25 def oneapm_ignore_enduser(*routes) set_oneapm_ignore(:enduser, *routes) end
Private Instance Methods
set_oneapm_ignore(type, *routes)
click to toggle source
# File lib/one_apm/inst/framework/sinatra/ignorer.rb, line 31 def set_oneapm_ignore(type, *routes) # Important to default this in the context of the actual app # If it's done at register time, ignores end up shared between apps. set :oneapm_ignores, Hash.new([]) if !respond_to?(:oneapm_ignores) # If we call an ignore without a route, it applies to the whole app routes = ["*"] if routes.empty? settings.oneapm_ignores[type] += routes.map do |r| # Ugly sending to private Base#compile, but we want to mimic # exactly Sinatra's mapping of route text to regex send(:compile, r).first end end