From 50b27331dc8188972db596d890a2bf2424256af5 Mon Sep 17 00:00:00 2001 From: Genevieve Warren <24882762+gewarren@users.noreply.github.com> Date: Thu, 15 Feb 2024 13:35:31 -0800 Subject: [PATCH] Add note about enforcement of no. of links (#39565) --- .../distributed-tracing-instrumentation-walkthroughs.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/core/diagnostics/distributed-tracing-instrumentation-walkthroughs.md b/docs/core/diagnostics/distributed-tracing-instrumentation-walkthroughs.md index e34faefe00445..d03cfbf533abe 100644 --- a/docs/core/diagnostics/distributed-tracing-instrumentation-walkthroughs.md +++ b/docs/core/diagnostics/distributed-tracing-instrumentation-walkthroughs.md @@ -453,8 +453,7 @@ void DoBatchWork(ActivityContext[] requestContexts) } ``` -Unlike events and Tags that can be added on-demand, links must be added during StartActivity() and -are immutable afterwards. +Unlike events and Tags that can be added on-demand, links must be added during `StartActivity()` and are immutable afterwards. -> [!IMPORTANT] -> According to the [OpenTelemetry specification](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/sdk.md#span-limits), the number of links is capped at 128 by default. +> [!IMPORTANT] +> As per the [OpenTelemetry specification](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/sdk.md#span-limits), the suggested limit for the number of links is 128. However, it's important to note that this limit is not enforced.