Skip to content

Files

Latest commit

7fde940 · Mar 17, 2025

History

History

opentelemetry-core

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Mar 7, 2025
Feb 19, 2025
May 21, 2020
Jul 6, 2023
Jun 10, 2019
Jun 10, 2019
Jul 29, 2022
Feb 12, 2025
Mar 17, 2025
Aug 20, 2024
Aug 20, 2024
Aug 20, 2024

OpenTelemetry Core

NPM Published Version Apache License

This package provides default implementations of the OpenTelemetry API for trace and metrics. It's intended for use both on the server and in the browser.

Built-in Implementations

Built-in Propagators

W3CTraceContextPropagator Propagator

OpenTelemetry provides a text-based approach to propagate context to remote services using the W3C Trace Context HTTP headers.

const api = require("@opentelemetry/api");
const { W3CTraceContextPropagator } = require("@opentelemetry/core");

/* Set Global Propagator */
api.propagation.setGlobalPropagator(new W3CTraceContextPropagator());

Composite Propagator

Combines multiple propagators into a single propagator.

This is used as a default Propagator

const api = require("@opentelemetry/api");
const { CompositePropagator } = require("@opentelemetry/core");

/* Set Global Propagator */
api.propagation.setGlobalPropagator(new CompositePropagator());

Baggage Propagator

Provides a text-based approach to propagate baggage to remote services using the OpenTelemetry Baggage Propagation HTTP headers.

const api = require("@opentelemetry/api");
const { W3CBaggagePropagator } = require("@opentelemetry/core");

/* Set Global Propagator */
api.propagation.setGlobalPropagator(new W3CBaggagePropagator());

Useful links

License

Apache 2.0 - See LICENSE for more information.