Socket
Socket
Sign inDemoInstall

@opencensus/propagation-b3

Package Overview
Dependencies
18
Maintainers
3
Versions
23
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @opencensus/propagation-b3

Opencensus propagation package for B3 format.


Version published
Weekly downloads
519K
decreased by-58.2%
Maintainers
3
Install size
661 kB
Created
Weekly downloads
 

Changelog

Source

0.0.22 - 2020-05-18

  • fix(deps): update dependency uuid to v8 (#807)
  • Addition of Stats Exporter for Microsoft Azure (#795)
  • chore(deps): bump jquery from 3.4.1 to 3.5.0 (#801)
  • fix(deps): update dependency uuid to v7 (#779)
  • chore(deps): update dependency google-proto-files to v2 (#796)
  • chore(deps): update dependency nodemon to v2 (#771)
  • fix(deps): update dependency semver to v7 (#778)
  • fix CoreTracerBase not respecting propagated trace options (#811)

Readme

Source

OpenCensus B3 Format Propagation for Node.js

Gitter chat

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

This project is still at an early stage of development. It's subject to change.

Installation

Install OpenCensus B3 Propagation with:

npm install @opencensus/propagation-b3

Usage

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

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

const b3 = new propagation.B3Format();

tracing.start({propagation: b3});

Similarly for Typescript:

import * as tracing from '@opencensus/nodejs';
import { B3Format } from '@opencensus/propagation-b3';

const b3 = new B3Format();

tracing.start({propagation: b3});

Keywords

FAQs

Last updated on 22 Jun 2018

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