rollbar-gem icon indicating copy to clipboard operation
rollbar-gem copied to clipboard

Exception tracking and logging from Ruby to Rollbar

Results 87 rollbar-gem issues
Sort by recently updated
recently updated
newest added

Ruby v3.3.5 was recently released. https://www.ruby-lang.org/en/news/2024/09/03/3-3-5-released/ Warning occurs when loading Rollbar Gem in Ruby v3.3.5 ``` root@6533553801ce:/# cat Gemfile source "https://rubygems.org" gem "rollbar" root@6533553801ce:/# cat main.rb require "rollbar" p "RUBY_VERSION...

Ruby

Hi there, Currently if we manually report an issue through Rollbar.error(e), if we want Rollbar to take into consideration our exception level filters, we need to add a silly flag...

The Rollbar Gem [configuration reference](https://docs.rollbar.com/docs/gem-configuration-reference) mentions that `girl_friday` is used when `use_async` is set to true. From the looks of the Gem `girl_friday` was replaced with `sucker_punch` (possibly 10+ years...

v4
Ruby

With @waltjones' https://github.com/rollbar/rollbar-gem/pull/1161 (adding support for Rails error reporter), shouldn't it be possible and actually desired to not load the Rack middleware?

Ruby

I use ActionMailer. Since we are using ActionMailer, `Rollbar::ActiveJob` is automatically applied. https://github.com/rollbar/rollbar-gem/blob/c4edf7e5094c3c043f2032fe560d217d5057c752/lib/rollbar/plugins/active_job.rb#L46 This makes it very convenient that any exceptions that occur during the mail sending process are automatically...

Ruby

Since version 3.5.1, Rollbar reports errors raised from Action Mailer even if they are handled with `discard_on` or `rescue_from` in the delivery job. In fact, this behavior changed in 3.5.0,...

We would like to keep the same environment name, but add site/region specific tags. 1. How can we add this in ruby/rails config? 2. How can we scope by this...