rollbar-gem
rollbar-gem copied to clipboard
Exception tracking and logging from Ruby to Rollbar
We upgraded from v3.3.0 to v3.3.1 and this caused the rollbar js to stop being loaded by Rails (that is the embed script is never added). Reverting to v3.3.0 solved...
I recently found out about [the top level `context` variable](https://docs.rollbar.com/docs/sdk-configurations#context) which allows you to set a variable which can be searched with `context:variable-value`. This would be perfect for us to...
Steps to reproduce: Try to add some scope with a `false` value: ``` Rollbar.scoped(example: false) { Rollbar.error(Exception.new) } ``` Observed: * the `example` key does not appear on the exception...
## Description of the change Rollbar.js updates: - 2.25.0 - Security update, addresses https://github.com/advisories/GHSA-fwr7-v2mv-hh25 - Improved Typescript types - Improved CSP error detection compatibility - Improved network telemetry - Support...
## Description of the change From v3 onwards Rollbar only works with Ruby 2.0 onwards. - `Gem::GemPathSearcher` no longer exists in early version of RubyGems so it's no longer needed...
I'm getting info bar on our rollbar UI: > rollbar.js version 2.24.0 is now available. (This project is currently using version 2.22.0) We're using the script from the gem this...
Looks like we can use Travis to create and release new versions of our SDKs. This should help simplify the process for quickly getting bug fixes into our customers' hands....
Looking at this code: https://github.com/rollbar/rollbar-gem/blob/a294430137758455d0a4ec0d45f08cb5aa50d5d6/lib/rollbar/truncation.rb#L20 Because of the order of operations in the `.truncate` method the Rollbar gem will choose a short backtrace using `MinBodyStrategy`, then if the payload is...
Just wanted to bring this one up, if we raise a lot of rollbars (e.g multiple per second) over a sustained period, we exhaust the file handles, and you scenario...