@opencensus/propagation-stackdriver

Opencensus propagation package for Stackdriver format.

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
@opencensus/propagation-stackdriver
2731990.1.02 years ago5 years agoMinified + gzip package size for @opencensus/propagation-stackdriver in KB

Readme

OpenCensus Stackdriver Propagation for Node.js
!Gitter chatgitter-imagegitter-url
OpenCensus Stackdriver Propagation allow 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 Stackdriver Propagation with:
npm install @opencensus/propagation-stackdriver

Usage

To propagate span context arround services with Stackdriver Propagation, pass an instance of Stackdriver Propagation to your tracing instance. For Javascript:
const tracing = require('@opencensus/nodejs');
const propagation = require('@opencensus/propagation-stackdriver');

const sd = propagation.v1;

tracing.start({propagation: sd});

Similarly for Typescript:
import * as tracing from '@opencensus/nodejs';
import * as propagation from '@opencensus/propagation-stackdriver';

const sd = propagation.v1;

tracing.start({propagation: sd});

Useful links

  • For more information on OpenCensus, visit:
  • To checkout the OpenCensus for Node.js, visit:
  • For help or feedback on this project, join us on gitter