Socket
Socket
Sign inDemoInstall

@opencensus/propagation-tracecontext

Package Overview
Dependencies
10
Maintainers
6
Versions
20
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @opencensus/propagation-tracecontext

OpenCensus propagation package for TraceContext format.


Version published
Weekly downloads
1.8K
decreased by-13.57%
Maintainers
6
Install size
0.977 MB
Created
Weekly downloads
 

Changelog

Source

0.1.0 - 2021-07-27

  • chore(stackdriver): upgrade google-auth-library, drop node8 (#887)
  • chore: upgrade gRPC, ts to newest compatible version (#907) BREAKING CHANGE: upgrade to TypeScript 3.x
  • chore(deps): pin googleapis, lock file maintenance (#928)

Readme

Source

OpenCensus Trace Context Format Propagation for Node.js

Gitter chat

OpenCensus Trace Context Format Propagation sends a span context on the wire in an HTTP request, allowing other services to create spans with the right context.

The library is in alpha stage and the API is subject to change.

Installation

Install OpenCensus TraceContex Propagation with:

npm install @opencensus/propagation-tracecontext

Usage

To propagate span context arround services with Trace Context Propagation, pass an instance of Trace Context Propagation to your tracing instance. For Javascript:

const tracing = require('@opencensus/nodejs');
const propagation = require('@opencensus/propagation-tracecontext');

const traceContext = new propagation.TraceContextFormat();

tracing.start({propagation: traceContext});

Similarly for Typescript:

import * as tracing from '@opencensus/nodejs';
import { TraceContextFormat } from '@opencensus/propagation-tracecontext';

const traceContext = new TraceContextFormat();

tracing.start({propagation: traceContext});

Keywords

FAQs

Last updated on 27 Jul 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc