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: docs/platforms/javascript/guides/electron/index.mdx
+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
@@ -28,7 +28,7 @@ Select which Sentry features you'd like to install in addition to Error Monitori
28
28
29
29
Once configured, all unhandled exceptions and native crashes are automatically captured by Sentry.
30
30
31
-
**Important:** Note your DSN. The _DSN_ (Data Source Name) tells the SDK where to send events. If you forget it, view _Settings -> Projects -> Client Keys (DSN)_ in the Sentry web UI.
31
+
**Important:** Note your DSN. The DSN (Data Source Name) tells the SDK where to send events. If you forget it, view _Settings -> Projects -> Client Keys (DSN)_ in the Sentry web UI.
Copy file name to clipboardExpand all lines: docs/platforms/python/configuration/options.mdx
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -64,7 +64,7 @@ Configures the sample rate for error events, in the range of `0.0` to `1.0`. The
64
64
65
65
Dynamically configures the sample rate for error events on a per-event basis. This configuration option accepts a function, which takes two parameters (the `event` and the `hint`), and which returns a boolean (indicating whether the event should be sent to Sentry) or a floating-point number between `0.0` and `1.0`, inclusive (where the number indicates the probability the event is sent to Sentry; the SDK will randomly decide whether to send the event with the given probability).
66
66
67
-
If this configuration option is specified, the <PlatformIdentifiername="sample_rate" /> option is ignored.
67
+
If this configuration option is specified, the `sample_rate` option is ignored.
68
68
69
69
</SdkOption>
70
70
@@ -99,7 +99,7 @@ If you enable this option, be sure to manually remove what you don't want to sen
Scrubs the event payload for sensitive information such as cookies, sessions, and passwords from a `denylist`. It can additionally be used to scrub from another `pii_denylist` if <PlatformIdentifiername="send_default_pii" /> is disabled. See how to [configure the scrubber here](../../data-management/sensitive-data/#event-scrubber).
102
+
Scrubs the event payload for sensitive information such as cookies, sessions, and passwords from a `denylist`. It can additionally be used to scrub from another `pii_denylist` if `send_default_pii` is disabled. See how to [configure the scrubber here](../../data-management/sensitive-data/#event-scrubber).
103
103
104
104
</SdkOption>
105
105
@@ -153,7 +153,7 @@ Sentry differentiates stack frames that are directly related to your application
153
153
154
154
A list of string prefixes of module names that do not belong to the app, but rather to third-party packages. Modules considered not part of the app will be hidden from stack traces by default.
155
155
156
-
This option can be overridden using <PlatformIdentifiername="in_app_include" />.
156
+
This option can be overridden using `in_app_include`.
A number between `0` and `1`, controlling the percentage chance a given transaction will be sent to Sentry. (`0` represents 0% while `1` represents 100%.) Applies equally to all transactions created in the app. Either this or <PlatformIdentifiername="traces_sampler" /> must be defined to enable tracing.
326
+
A number between `0` and `1`, controlling the percentage chance a given transaction will be sent to Sentry. (`0` represents 0% while `1` represents 100%.) Applies equally to all transactions created in the app. Either this or `traces_sampler` must be defined to enable tracing.
327
327
328
-
If <PlatformIdentifiername="traces_sample_rate" /> is `0`, this means that no new traces will be created. However, if you have another service (for example a JS frontend) that makes requests to your service that include trace information, those traces will be continued and thus transactions will be sent to Sentry.
328
+
If `traces_sample_rate` is `0`, this means that no new traces will be created. However, if you have another service (for example a JS frontend) that makes requests to your service that include trace information, those traces will be continued and thus transactions will be sent to Sentry.
329
329
330
-
If you want to disable all tracing you need to set <PlatformIdentifiername="traces_sample_rate" />`=None`. In this case, no new traces will be started and no incoming traces will be continued.
330
+
If you want to disable all tracing you need to set `traces_sample_rate=None`. In this case, no new traces will be started and no incoming traces will be continued.
A function responsible for determining the percentage chance a given transaction will be sent to Sentry. It will automatically be passed information about the transaction and the context in which it's being created, and must return a number between `0` (0% chance of being sent) and `1` (100% chance of being sent). Can also be used for filtering transactions, by returning `0` for those that are unwanted. Either this or <PlatformIdentifiername="traces_sample_rate" /> must be defined to enable tracing.
336
+
A function responsible for determining the percentage chance a given transaction will be sent to Sentry. It will automatically be passed information about the transaction and the context in which it's being created, and must return a number between `0` (0% chance of being sent) and `1` (100% chance of being sent). Can also be used for filtering transactions, by returning `0` for those that are unwanted. Either this or `traces_sample_rate` must be defined to enable tracing.
337
337
338
338
</SdkOption>
339
339
@@ -345,7 +345,7 @@ The option may contain a list of strings or regex against which the URLs of outg
345
345
If one of the entries in the list matches the URL of an outgoing request, trace data will be attached to that request.
346
346
String entries do not have to be full matches, meaning the URL of a request is matched when it _contains_ a string provided through the option.
347
347
348
-
If <PlatformIdentifiername="trace_propagation_targets" /> is not provided, trace data is attached to every outgoing request from the instrumented client.
348
+
If `trace_propagation_targets` is not provided, trace data is attached to every outgoing request from the instrumented client.
0 commit comments