You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -166,7 +166,7 @@ The full range of options is the following:
166
166
|`sample_rate`| False | 1.0 ||
167
167
|`send_result`| False |`:none`| You may want to set it to `:sync` if testing your Sentry integration. See "Testing with Sentry" |
168
168
|`send_max_attempts`| False | 4 ||
169
-
|`in_app_module_whitelist`| False |`[]`||
169
+
|`in_app_module_allow_list`| False |`[]`||
170
170
|`report_deps`| False | True | Will attempt to load Mix dependencies at compile time to report alongside events |
171
171
|`enable_source_code_context`| False | False ||
172
172
|`root_source_code_paths`| Required if `enable_source_code_context` is enabled || Should usually be set to `[File.cwd!()]`. For umbrella applications you should list all your applications paths in this list (e.g. `["#{File.cwd!()}/apps/app_1", "#{File.cwd!()}/apps/app_2"]`. |
Copy file name to clipboardExpand all lines: lib/sentry/event.ex
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ defmodule Sentry.Event do
5
5
6
6
### Configuration
7
7
8
-
* `:in_app_module_whitelist` - Expects a list of modules that is used to distinguish among stacktrace frames that belong to your app and ones that are part of libraries or core Elixir. This is used to better display the significant part of stacktraces. The logic is greedy, so if your app's root module is `MyApp` and your setting is `[MyApp]`, that module as well as any submodules like `MyApp.Submodule` would be considered part of your app. Defaults to `[]`.
8
+
* `:in_app_module_allow_list` - Expects a list of modules that is used to distinguish among stacktrace frames that belong to your app and ones that are part of libraries or core Elixir. This is used to better display the significant part of stacktraces. The logic is greedy, so if your app's root module is `MyApp` and your setting is `[MyApp]`, that module as well as any submodules like `MyApp.Submodule` would be considered part of your app. Defaults to `[]`.
9
9
* `:report_deps` - Flag for whether to include the loaded dependencies when reporting an error. Defaults to true.
0 commit comments