List of usage examples for io.vertx.tracing.zipkin HttpSenderOptions HttpSenderOptions
public HttpSenderOptions()
From source file:examples.ZipkinTracingExamples.java
public void ex2(String senderEndpoint) { Vertx vertx = Vertx.vertx(new VertxOptions().setTracingOptions(new ZipkinTracingOptions() .setSenderOptions(new HttpSenderOptions().setSenderEndpoint(senderEndpoint)).setEnabled(true))); }
From source file:examples.ZipkinTracingExamples.java
public void ex3(String senderEndpoint, KeyCertOptions sslOptions) { Vertx vertx = Vertx.vertx(new VertxOptions().setTracingOptions(new ZipkinTracingOptions() .setSenderOptions(new HttpSenderOptions().setSenderEndpoint(senderEndpoint).setSsl(true) .setKeyCertOptions(sslOptions)) .setEnabled(true)));//from w w w . jav a2 s . co m }