class Airbrake::Rails::ActionControllerNotifySubscriber
def call(*args)
Experimental RBS support (using type sampling data from the type_fusion project).
def call: (*Array[String] args) -> untyped
This signature was generated using 1 sample from 1 application.
def call(*args) return unless Airbrake::Config.instance.performance_stats routes = Airbrake::Rack::RequestStore[:routes] return if !routes || routes.none? event = Airbrake::Rails::Event.new(*args) routes.each do |route, _params| Airbrake.notify_request( method: event.method, route: route, status_code: event.status_code, timing: event.duration, time: event.time, ) end end