From bfc70952ebb5bda1a7bc1e2217ce249cc0cabc73 Mon Sep 17 00:00:00 2001 From: Ryan Lamb <4955475+kinyoklion@users.noreply.github.com> Date: Thu, 4 Apr 2024 08:45:47 -0700 Subject: [PATCH] Add note about spans being an experimental feature. --- packages/telemetry/node-server-sdk-otel/src/TracingHook.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/telemetry/node-server-sdk-otel/src/TracingHook.ts b/packages/telemetry/node-server-sdk-otel/src/TracingHook.ts index b1e6b9317..fa4112a98 100644 --- a/packages/telemetry/node-server-sdk-otel/src/TracingHook.ts +++ b/packages/telemetry/node-server-sdk-otel/src/TracingHook.ts @@ -25,11 +25,14 @@ const TRACING_HOOK_NAME = 'LaunchDarkly Tracing Hook'; */ export interface TracingHookOptions { /** - * If set to true, then the tracing hook will add spans for each variation + * Experimental: If set to true, then the tracing hook will add spans for each variation * method call. Span events are always added and are unaffected by this * setting. * * The default value is false. + * + * This feature is experimental and the data in the spans, or nesting of spans, + * could change in future versions. */ spans?: boolean;