Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 1.19 KB

README.md

File metadata and controls

36 lines (28 loc) · 1.19 KB

Build Status Released Version

OpenTracing Vert.x Web Instrumentation

OpenTracing instrumentation for Vert.x Web project. This repository currently contains handler which traces server requests.

Configuration

Router router = Router.router(vertx);

TracingHandler handler = new TracingHandler(tracer);
router.route()
        .order(-1).handler(handler)
        .failureHandler(handler);

Accessing server span context

Because Vert.x is event loop based, thread local implementations of span source do not work. The current solution is to get span context from RoutingContext and then pass it manually around.

SpanContext serverContext = TracingFilter.serverSpanContext(routingContext);

Development

./mvnw clean install

Release

Follow instructions in RELEASE