File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed
src/platforms/ruby/common/configuration Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ config.rails.skippable_job_adapters = ["ActiveJob::QueueAdapters::MyAdapter"]
32
32
- ` Sentry::Rails::Tracing::ActionControllerSubscriber `
33
33
- ` Sentry::Rails::Tracing::ActionViewSubscriber `
34
34
- ` Sentry::Rails::Tracing::ActiveRecordSubscriber `
35
+ - ` Sentry::Rails::Tracing::ActiveStorageSubscriber `
35
36
36
37
``` ruby
37
38
# you can add a new subscriber
Original file line number Diff line number Diff line change @@ -71,6 +71,11 @@ config.breadcrumbs_logger = [:active_support_logger]
71
71
config.breadcrumbs_logger = [:active_support_logger , :http_logger ]
72
72
```
73
73
74
+ ` capture_exception_frame_locals `
75
+
76
+ : Whether to capture local variables from the raised exception's frame. Default is ` false ` .
77
+
78
+
74
79
` debug `
75
80
76
81
: 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:
158
163
config.sample_rate = 0.5
159
164
```
160
165
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
+
161
178
` send_default_pii `
162
179
163
180
: When its value is ` false ` (default), sensitive information like
You can’t perform that action at this time.
0 commit comments