From b3c2833365e1e7b1b6c69623a230862c0daa254e Mon Sep 17 00:00:00 2001 From: "Nikhil Chitlur Navakiran (from Dev Box)" Date: Tue, 12 May 2026 15:55:49 -0600 Subject: [PATCH] Update telemetry SDK name to microsoft-opentelemetry Change TELEMETRY_SDK_NAME_VALUE from 'A365ObservabilitySDK' to 'microsoft-opentelemetry' to align with the package distribution name. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- src/a365/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/a365/constants.ts b/src/a365/constants.ts index 22f1be4..d137c05 100644 --- a/src/a365/constants.ts +++ b/src/a365/constants.ts @@ -134,7 +134,7 @@ export class OpenTelemetryConstants { public static readonly TELEMETRY_SDK_NAME_KEY = "telemetry.sdk.name"; public static readonly TELEMETRY_SDK_LANGUAGE_KEY = "telemetry.sdk.language"; public static readonly TELEMETRY_SDK_VERSION_KEY = "telemetry.sdk.version"; - public static readonly TELEMETRY_SDK_NAME_VALUE = "A365ObservabilitySDK"; + public static readonly TELEMETRY_SDK_NAME_VALUE = "microsoft-opentelemetry"; public static readonly TELEMETRY_SDK_LANGUAGE_VALUE = "nodejs"; public static readonly TELEMETRY_SDK_VERSION_VALUE = MICROSOFT_OPENTELEMETRY_VERSION; }