Example usage for io.vertx.tracing.opentracing OpenTracingOptions OpenTracingOptions

List of usage examples for io.vertx.tracing.opentracing OpenTracingOptions OpenTracingOptions

Introduction

In this page you can find the example usage for io.vertx.tracing.opentracing OpenTracingOptions OpenTracingOptions.

Prototype

public OpenTracingOptions(JsonObject json) 

Source Link

Usage

From source file:examples.OpenTracingExamples.java

public void ex2(Tracer tracer) {
    Vertx vertx = Vertx
            .vertx(new VertxOptions().setTracingOptions(new OpenTracingOptions(tracer).setEnabled(true)));
}