有没有办法排除要在 Ruby 的 Rollbar 中报告的警告?

Is there a way to exclude warnings to be reported in Rollbar for Ruby?

使用 Rollbar gem 我收到了很多消耗我的活动积分的警告,我可以将它们排除在报告之外吗?

是:在你的 rollbar 配置中,添加它们,例如:

Rollbar.configure do |config|

  config.exception_level_filters.merge!({
    'ActionController::RoutingError' => 'ignore',
  })

end

https://github.com/rollbar/rollbar-gem#exception-level-filters