@opentelemetry/opentelemetry-browser-detector
Version:
OpenTelemetry Resource Detector for Browser
56 lines • 2.34 kB
JavaScript
;
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.browserDetector = void 0;
const api_1 = require("@opentelemetry/api");
const resources_1 = require("@opentelemetry/resources");
const semantic_conventions_1 = require("@opentelemetry/semantic-conventions");
const semconv_1 = require("./semconv");
/**
* BrowserDetector will be used to detect the resources related to browser.
*/
class BrowserDetector {
detect(config) {
const isBrowser = typeof window !== 'undefined' && typeof document !== 'undefined';
if (!isBrowser) {
return (0, resources_1.emptyResource)();
}
const browserResource = getBrowserAttributes();
return this._getResourceAttributes(browserResource, config);
}
/**
* Validates browser resource attribute map from browser variables
*
* @param browserResource The un-sanitized resource attributes from browser as key/value pairs.
* @param config: Config
* @returns The sanitized resource attributes.
*/
_getResourceAttributes(browserResource, _config) {
if (!browserResource[semantic_conventions_1.ATTR_USER_AGENT_ORIGINAL] &&
!browserResource[semconv_1.ATTR_BROWSER_PLATFORM]) {
api_1.diag.debug('BrowserDetector failed: Unable to find required browser resources. ');
return (0, resources_1.emptyResource)();
}
else {
return { attributes: browserResource };
}
}
}
// Add Browser related attributes to resources
function getBrowserAttributes() {
const browserAttribs = {};
const userAgentData = navigator.userAgentData;
if (userAgentData) {
browserAttribs[semconv_1.ATTR_BROWSER_PLATFORM] = userAgentData.platform;
browserAttribs[semconv_1.ATTR_BROWSER_BRANDS] = userAgentData.brands.map(b => `${b.brand} ${b.version}`);
browserAttribs[semconv_1.ATTR_BROWSER_MOBILE] = userAgentData.mobile;
}
browserAttribs[semantic_conventions_1.ATTR_USER_AGENT_ORIGINAL] = navigator.userAgent;
browserAttribs[semconv_1.ATTR_BROWSER_LANGUAGE] = navigator.language;
return browserAttribs;
}
exports.browserDetector = new BrowserDetector();
//# sourceMappingURL=BrowserDetector.js.map