OpenTracing instrumentation for JAX-RS standard. It supports tracing of server and client requests.
Instrumentation by default adds a set of standard HTTP tags and as an operation name it uses a string defined in @Path
annotation.
Custom tags or operation name can be defined in span decorators.
By default OpenTracing provider is automatically discovered and registered.
The only configuration that is required is to register a tracer instance via GlobalTracer.register(tracer)
at application startup.
Custom configuration is only required when using a different set of span decoratos.
// code sample from javax.ws.rs.core.Application
public Set<Object> getSingletons() {
DynamicFeature tracing = new ServerTracingDynamicFeature.Builder(tracer)
.withDecorators(decorators)
.build();
return Collections.singleton(tracing);
}
An example of traced REST endpoint:
@GET
@Path("/hello")
@Traced(operationName = "helloRenamed") // optional, see javadoc
public Response hello(@BeanParam TracingContext tracingContext) { // optional to get server span context
// this span will be ChildOf of span representing server request processing, if it is not async, keep reading!
Span childSpan = tracer.buildSpan("businessOperation")
.start())
// business logic
childSpan.finish();
return Response.status(Response.Status.OK).build();
}
In case of async handlers server span is not accessible via tracer.activeSpan()
, however span context
can be obtained via @BeanParam TracingContext tracingContext
. This object is injected as a handler param.
Client client = ClientBuilder.newBuilder()
.reqister(ClientTracingFeature.class)
.build();
Response response = client.target("http://localhost/endpoint")
.request()
.property(TracingProperties.CHILD_OF, parentSpanContext) // optional, by default new parent is inferred from span source
.property(TracingProperties.TRACING_DISABLED, false) // optional, by default everything is traced
.get();
Async requests are executed in a different thread than when the client has been invoked, therefore
spans representing client requests are not connected to appropriate parent. To fix this JAX-RS client
has to use OpenTracing-aware ExecutorService
.
@ClientAsyncExecutor
public class DelegateExecutorServiceProvider implements ExecutorServiceProvider {
private final ExecutorService executorService;
public DelegateExecutorServiceProvider(ExecutorService executorService) {
this.executorService = executorService;
}
@Override
public ExecutorService getExecutorService() {
return executorService;
}
@Override
public void dispose(ExecutorService executorService) {
}
}
Client client = ClientBuilder.newBuilder()
.register(new DelegateExecutorServiceProvider(
new TracedExecutorService(Executors.newFixedThreadPool(8), tracer)))
...
Client client = new ResteasyClientBuilder()
.asyncExecutor(new TracedExecutorService(Executors.newFixedThreadPool(8), tracer))
...
./mvnw clean install
Follow instructions in RELEASE