@deal/opencensus-exporter-zipkin
TypeScript icon, indicating that this package has built-in type declarations

0.0.7 • Public • Published

OpenCensus Zipkin Exporter for Node.js

Gitter chat

OpenCensus Zipkin Exporter allows the user to send collected traces with OpenCensus Node.js to Zipkin.

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

Installation

Install OpenCensus Zipkin Exporter with:

npm install @deal/opencensus-nodejs
npm install @deal/opencensus-exporter-zipkin

Usage

To use Zipkin as your exporter, first, download from any of the three available options on Quickstart: through Docker, on Java or manually compiling the source code. Tests were executed running Zipkin with Java, through the following commands on terminal:

wget -O zipkin.jar 'https://search.maven.org/remote_content?g=io.zipkin.java&a=zipkin-server&v=LATEST&c=exec'
java -jar zipkin.jar

Instance the exporter on your application and pass the options, it must contain a service name and, optionaly, an URL. If no URL is passed, http://localhost:9411/api/v2/spans is used as default.

For javascript:

var tracing = require('@deal/opencensus-nodejs');
var zipkin = require('@deal/opencensus-exporter-zipkin');

// Add your zipkin url (ex http://localhost:9411/api/v2/spans)
// and application name to the Zipkin options
var options = {
  url: 'your-zipkin-url',
  serviceName: 'your-application-name'
}
var exporter = new zipkin.ZipkinTraceExporter(options);

Similarly for Typescript:

import * as tracing from '@deal/opencensus-nodejs';
import { Zipkin } from '@deal/opencensus-exporter-zipkin';

// Add your zipkin url (ex http://localhost:9411/api/v2/spans)
// and application name to the Zipkin options
const options = {
  url: 'your-zipkin-url',
  serviceName: 'your-application-name'
}
const exporter = new Zipkin(options);

Now, register the exporter and start tracing.

tracing.start({'exporter': exporter});

or

tracing.registerExporter(exporter).start();

Useful links

Package Sidebar

Install

npm i @deal/opencensus-exporter-zipkin

Weekly Downloads

4

Version

0.0.7

License

Apache-2.0

Unpacked Size

23.6 kB

Total Files

7

Last publish

Collaborators

  • curated-infra
  • dealeng
  • curated-dependabot