@opentelemetry/core
TypeScript icon, indicating that this package has built-in type declarations

1.24.1 • Public • Published

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.

/@opentelemetry/core/

    Package Sidebar

    Install

    npm i @opentelemetry/core

    Weekly Downloads

    8,714,181

    Version

    1.24.1

    License

    Apache-2.0

    Unpacked Size

    877 kB

    Total Files

    462

    Last publish

    Collaborators

    • pichlermarc
    • bogdandrutu
    • dyladan