0.0.9 • Published 5 years ago

@danielkoehler/propagation-stackdriver v0.0.9

Weekly downloads
1
License
Apache-2.0
Repository
github
Last release
5 years ago

OpenCensus Stackdriver Propagation for Node.js

Gitter chat

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 @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