@deal/opencensus-propagation-stackdriver
v0.0.7
Published
[![Gitter chat][gitter-image]][gitter-url]
Downloads
5
Readme
OpenCensus Stackdriver Propagation for Node.js
OpenCensus Stackdriver Propagation allow 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 Stackdriver Propagation with:
npm install @deal/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('@deal/opencensus-nodejs');
const propagation = require('@deal/opencensus-propagation-stackdriver');
const sd = propagation.v1;
tracing.start({propagation: sd});
Similarly for Typescript:
import * as tracing from '@deal/opencensus-nodejs';
import * as propagation from '@deal/opencensus-propagation-stackdriver';
const sd = propagation.v1;
tracing.start({propagation: sd});
Useful links
- For more information on OpenCensus, visit: https://opencensus.io/
- To checkout the OpenCensus for Node.js, visit: https://github.com/census-instrumentation/opencensus-node
- For help or feedback on this project, join us on gitter