From 06623a0de7cd72ebbd58193259949059b74f4dab Mon Sep 17 00:00:00 2001 From: Phillip Carter Date: Mon, 17 Jun 2024 11:49:53 -0700 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Cijo Thomas --- content/en/docs/concepts/signals/baggage.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/docs/concepts/signals/baggage.md b/content/en/docs/concepts/signals/baggage.md index 9fedcf3f33e7..de66aff55220 100644 --- a/content/en/docs/concepts/signals/baggage.md +++ b/content/en/docs/concepts/signals/baggage.md @@ -9,7 +9,7 @@ context. Baggage is a key-value store, which means it lets you [propagate](/docs data you like alongside [context](/docs/concepts/context-propagation/#context). Baggage means you can pass data across services and processes, making it -available to add to [trace](/docs/concepts/signals/traces/), [metrics](/docs/concepts/signals/metrics/), or [logs](/docs/concepts/signals/logs/) in those services. +available to add to [traces](/docs/concepts/signals/traces/), [metrics](/docs/concepts/signals/metrics/), or [logs](/docs/concepts/signals/logs/) in those services. ## Example @@ -60,7 +60,7 @@ yours, so exercise caution when reading them. ## Baggage is not the same as attributes An important thing to note about baggage is that it is a separate key-value -store and is unassociated with attributes on spans, metrics, or logs. +store and is unassociated with attributes on spans, metrics, or logs without explicitly adding them. To add Baggage entries to attributes, you need to explicitly read that data and add it. For example, in .NET you might do this: