Skip to content

Commit 22eca73

Browse files
authored
fix(develop): Fix typos (#12545)
1 parent cbfa896 commit 22eca73

File tree

1 file changed

+5
-5
lines changed
  • develop-docs/sdk/telemetry/traces/distributed-tracing

1 file changed

+5
-5
lines changed

develop-docs/sdk/telemetry/traces/distributed-tracing/index.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@
22
title: Distributed Tracing
33
---
44

5-
This document describes how a SDK should propagate information between different services to connect all telemetry (errors, profiles, replays, transaction, check-ins, ...) from those services into one trace.
5+
This document describes how an SDK should propagate information between different services to connect all telemetry (errors, profiles, replays, transaction, check-ins, ...) from those services into one trace.
66

77
For an overview see [Distributed Tracing](https://docs.sentry.io/product/performance/distributed-tracing/) in the product docs.
88

99
Sentry uses three containers to hold trace information [`sentry-trace`](/sdk/performance/#header-sentry-trace), [`traceparent`](/sdk/performance/#header-traceparent) and [`baggage`](/sdk/performance/dynamic-sampling-context/#baggage-header).
1010

11-
With these containers you can propagate a trace to a down-stream service. By either
12-
- adding `sentry-trace`, `traceparent` and `baggage` HTTP headers (when doing outgoing HTTP requests),
11+
With these containers you can propagate a trace to a down-stream service by either:
12+
- adding `sentry-trace`, `traceparent` and `baggage` HTTP headers (when making outgoing HTTP requests),
1313
- adding `sentry-trace`, `traceparent` and `baggage` as meta data (when putting tasks into a queue, details are specific to the queue you want to support), or
1414
- setting environment variables (when calling another process). In this case the env variables should be called `SENTRY_TRACE`, `SENTRY_TRACEPARENT` and `SENTRY_BAGGAGE`.
1515

1616
The SDK running in the receiving service needs to make sure to pick up incoming trace information by
1717
- reading `sentry-trace`, `traceparent` and `baggage` headers for each incoming HTTP request,
1818
- reading `sentry-trace`, `traceparent` and `baggage` meta data when retrieving an item from a queue, or
19-
- reading the environment variables `SENTRY_TRACE`, `SENTRY_TRACEPARENT` and `SENTRY_BAGGAGE` on start up.
19+
- reading the environment variables `SENTRY_TRACE`, `SENTRY_TRACEPARENT` and `SENTRY_BAGGAGE` on startup.
2020

2121
In case both `sentry-trace` and `traceparent` are present, `sentry-trace` takes precedence.
2222

23-
This trace information should be stored in the "propagation context" of the current scope. This makes sure that all telemetry that is emmited from the receiving service to Sentry will include the correct trace information.
23+
This trace information should be stored in the "propagation context" of the current scope. This makes sure that all telemetry that is emitted from the receiving service to Sentry will include the correct trace information.

0 commit comments

Comments
 (0)