zipkin
This is the core npm package for Zipkin. It contains the public API which is used by the various
plugins (instrumentations and transports).
We include TypeScript definition file which you can also use as documentation.
Developing
Please always make sure that TypeScript type definitions match source code modifications.
Usage
const zipkin = require('zipkin');
const CLSContext = require('zipkin-context-cls');
const ctxImpl = new CLSContext();
const xtxImpl = new zipkin.ExplicitContext();
const tracer = new zipkin.Tracer({
ctxImpl,
recorder: new zipkin.ConsoleRecorder(),
sampler: new zipkin.sampler.CountingSampler(0.01),
traceId128Bit: true,
localServiceName: 'my-service'
});
In-process context (node only)
The event loop is what allows Node.js to perform non-blocking I/O operations, hence
several operations are happening at the same time and we need a way to correlate different operations that happen at the same time to a specific trace. There are two options for this: explicit and implicit context.
In the explicit context, we pass around an object ctx
from the top layer of the application down to those operations we want to trace. For example, a ctx
will be handed from the HTTP handler down to the application layer and finally to a HTTP call that queries external resources.
In the implicit context, we don't need to pass anything, the in-process context is transparent for the user (see zipkin-context-cls).
Local tracing
Sometimes you have activity that precedes a remote request that you want to
capture in a trace. tracer.local
can time an operation, placing a
corresponding span ID in scope so that any downstream commands end up in the
same trace.
Here's an example tracing a synchronous function:
const result = tracer.local('checkout', () => {
return someComputation();
});
Here's an example tracing a function that returns a promise:
const result = tracer.local('checkout', () => {
return createAPromise();
});