1.0.0 • Published 5 years ago

zipkin-instrumentation-koa-slim v1.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
5 years ago

zipkin-instrumentation-koa

Koa middleware and instrumentation that adds Zipkin tracing to the application.

Koa Middleware

import * as Koa from 'koa';
import * as KoaInstrumentation from "zipkin-instrumentation-koa";
import {Tracer, ExplicitContext, ConsoleRecorder} from "zipkin";

const ctxImpl = new ExplicitContext();
const recorder = new ConsoleRecorder();
const tracer = new Tracer({ctxImpl, recorder}); // configure your tracer properly here

const app = new Koa();

// Add the Zipkin middleware
app.use(KoaInstrumentation.middleware({tracer}));