sentry-ruby
sentry-ruby copied to clipboard
Sentry SDK for Ruby
Hey guys, I've my Ruby on Rails application accepting [Data URI scheme](https://en.wikipedia.org/wiki/Data_URI_scheme) in params. Sentry has the limits on payload size described [here](https://develop.sentry.dev/sdk/data-handling/#variable-size). Meanwhile sentry does not call `before_send` hook...
### Issue Description When being ran in classic mode and without `config.ru` (e.g. `bundle exec ruby app.rb`), Sinatra apps will be initialized at the end of the Ruby script by...
### Issue Description I believe there is an issue when an error occurs in the stack, I was expecting sentry to send a new issue but it did not. The...
Add some span truncation logic similar to frames/breadcrumbs
### **Describe the idea** Applications instrumented with a Sentry SDK should collect and propagate dynamic sampling context data to all outgoing requests and to Sentry. ### Requirement: **When** an application...
HI guys, I'm trying to prevent ActionController::RoutingError **Transaction Events** from being sent to Sentry. As regular pentest scans pollute our performance reports in sentry. The default config IGNORE_DEFAULT already skips...
**Describe the idea** I would like to be able to sort traces for web requests by allocations. **Why do you think it's beneficial to most of the users** It can...
### Description We've updated the docs (https://github.com/getsentry/develop/pull/551) to explain how we would like to handle event filter order, updating of sessions for dropped events and sending of session updates. We...
In the version `4.4.0`, we added support for capturing `net/http` requests as span/breadcrumbs. This feature requires [patching the class](https://github.com/getsentry/sentry-ruby/blob/master/sentry-ruby/lib/sentry/net/http.rb), which can be done in 2 different but conflicting ways: method...
it would be useful to configure a global exception reporting level (eg, `:warning`, `:error`) so that all reported exceptions below this level are dropped. rollbar/bugsnag have this afaik. the only...