Skip to content

Commit a928745

Browse files
committed
change heading, rewording, typos
1 parent ab3367e commit a928745

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

develop-docs/sdk/telemetry/traces/tracing-without-performance.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ Tracing without Performance is the default fallback behavior of SDKs, when users
1313
This means that SDKs in this mode always:
1414

1515
- continue incoming traces
16-
- attache `event.contexts.trace` context on events (e.g. errors, check-ins)
16+
- attach `event.contexts.trace` context on events (e.g. errors, check-ins)
1717
- attach the `trace` envelope header to Sentry envelopes, populated from the dynamic sampling context
1818
- propagate trace data (`sentry-trace`, `baggage`) via the usual channels (e.g. HTTP headers, `<meta> HTML tags`, etc), with the correct [sampling decision](#sampling-decision)
1919

2020
If users [explicitly opt out](#completely-disable-tracing) of all tracing capabilities, TwP mode will no longer be active.
2121

2222
## Configuration
2323

24-
Twp is active by default if users don't specify sampling options that enable span collection and sending.
24+
TwP is active by default if users don't specify sampling options that enable span collection and sending.
2525
For example, the following trivial SDK setup (note the absence of sampling options) enables TwP:
2626

2727
```JavaScript
@@ -39,9 +39,9 @@ This is fine as long as there's a good reason why additional configuration is re
3939

4040
</Alert>
4141

42-
### Upgrading to Tracing With Performance
42+
### Enable Regular Tracing
4343

44-
As soon as users specify a tracing option in the SDK configuration, SDKs will use the normal tracing mode, which means collecting and sending spans (or transactions).
44+
As soon as users specify a tracing option in the SDK configuration, SDKs will use the normal tracing mode, which means collecting and sending spans (or transactions) in addition to continuing and propagating traces.
4545

4646
This can be achieved by specifying `tracesSampleRate` or `tracesSampler`, or any other equivalent option in the SDK configuration:
4747

@@ -56,7 +56,7 @@ Sentry.init({
5656
});
5757
```
5858

59-
It's important to note that setting `tracesSampleRate: 0` disables TwP mode.
59+
It's important to note that setting `tracesSampleRate: 0` does not mean that we fall back to TwP mode but that sampling decisions are always negative and we propagate the trace with a negative sampling decision.
6060

6161
### Completely Disabling Tracing
6262

0 commit comments

Comments
 (0)