sentry-ruby
sentry-ruby copied to clipboard
Sentry SDK for Ruby
https://github.com/rails/rails/pull/23868/files
- Drop support of Rails 5.0 & 5.1 - Drop support of Ruby 2.4 - Drop some configuration options - `async` - #1522 - `linecache` - I guess no one...
**Describe the idea** Suppose you have a Rails middleware that does this: ```ruby def call(env) return [200, { 'Content-Type' => 'text/plain' }, 'hi'] end ``` Since `'hi'` does not respond...
Related discussions: - https://twitter.com/_solnic_/status/1410539769495527432 - https://github.com/dry-rb/dry-effects/issues/82#issuecomment-865162374
### Issue Description When I run my rails controller tests using guard I get an error ever since upgrading from 5.3.1 to 5.4.2. ``` Minitest::UnexpectedError: NoMethodError: undefined method `set_transaction_name' for...
On a production instance, we receive this error message. We have looked into this issue, but we where not able to find the cause for this error until now. We...
See https://develop.sentry.dev/sdk/event-payloads/transaction/#transaction-annotations for spec. This is necessary going forward because we need to separate high cardinality / low quality (for us, only raw urls from rack) to enable ingestion to...
**Note**: This was a hack week project. Submitting draft for feedback. --- For users who already use OpenTelemetry instrumentation or would prefer to use it instead of Sentry's own tracing...
Creates new `Baggage` entries when the ruby SDK is the `head SDK`, i.e the first SDK that originates a distributed trace. The new `Baggage` entry is created when `get_baggage` is...
This PR adds support for the first part of our Dynamic Sampling product, i.e. * parsing incoming `W3C Baggage` headers and adding them as a `Baggage` object on the transaction...