ssxxue / koa-zipkin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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}));

About

License:MIT License


Languages

Language:TypeScript 100.0%