UNPKG

@opentelemetry/core

Version:

OpenTelemetry Core provides constants and utilities shared by all OpenTelemetry SDK packages.

18 lines 777 B
"use strict"; /* * Copyright The OpenTelemetry Authors * SPDX-License-Identifier: Apache-2.0 */ Object.defineProperty(exports, "__esModule", { value: true }); exports.SDK_INFO = void 0; const version_1 = require("../../version"); const semantic_conventions_1 = require("@opentelemetry/semantic-conventions"); const semconv_1 = require("../../semconv"); /** Constants describing the SDK in use */ exports.SDK_INFO = { [semantic_conventions_1.ATTR_TELEMETRY_SDK_NAME]: 'opentelemetry', [semconv_1.ATTR_PROCESS_RUNTIME_NAME]: 'browser', [semantic_conventions_1.ATTR_TELEMETRY_SDK_LANGUAGE]: semantic_conventions_1.TELEMETRY_SDK_LANGUAGE_VALUE_WEBJS, [semantic_conventions_1.ATTR_TELEMETRY_SDK_VERSION]: version_1.VERSION, }; //# sourceMappingURL=sdk-info.js.map