Skip to content

Commit 9e6ca29

Browse files
authored
Update Ruby SDK's documents for 4.8.0 release (#4384)
1 parent 99a863b commit 9e6ca29

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

src/platforms/ruby/common/configuration/integration_options.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ config.rails.skippable_job_adapters = ["ActiveJob::QueueAdapters::MyAdapter"]
3232
- `Sentry::Rails::Tracing::ActionControllerSubscriber`
3333
- `Sentry::Rails::Tracing::ActionViewSubscriber`
3434
- `Sentry::Rails::Tracing::ActiveRecordSubscriber`
35+
- `Sentry::Rails::Tracing::ActiveStorageSubscriber`
3536

3637
```ruby
3738
# you can add a new subscriber

src/platforms/ruby/common/configuration/options.mdx

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,11 @@ config.breadcrumbs_logger = [:active_support_logger]
7171
config.breadcrumbs_logger = [:active_support_logger, :http_logger]
7272
```
7373

74+
`capture_exception_frame_locals`
75+
76+
: Whether to capture local variables from the raised exception's frame. Default is `false`.
77+
78+
7479
`debug`
7580

7681
: Activation of debugging mode. When enabled, SDK errors will be logged with backtrace. Default is `false`.
@@ -158,6 +163,18 @@ We guess the release intelligently in the following order of preference:
158163
config.sample_rate = 0.5
159164
```
160165

166+
`send_client_reports`
167+
168+
: Attach diagnostic client reports about dropped events to an existing envelope max once every 30s. Default is `true`.
169+
170+
This information will not be visible to users at the moment, but we're planning to add this information to user-facing UI.
171+
172+
If you **do not** want to send this data, you can opt-out by setting
173+
174+
```ruby
175+
config.send_client_reports = false
176+
```
177+
161178
`send_default_pii`
162179

163180
: When its value is `false` (default), sensitive information like

0 commit comments

Comments
 (0)