I'm new to OpenTracing. Until now I was mainly working in house tracing tool. The server is not able to extract the span context.
MultivaluedMap<String, String> rawHeaders = httpHeaders.getRequestHeaders();
final HashMap<String, String> headers = new HashMap<String, String>();
for (String key : rawHeaders.keySet()) {
if(key.contentEquals("deviceKey"))
headers.put(key, rawHeaders.get(key).get(0));
}
Tracer.SpanBuilder spanBuilder;
try {
SpanContext parentSpanCtx = tracer.extract(Format.Builtin.HTTP_HEADERS, new TextMapExtractAdapter(headers));
if (parentSpanCtx == null) {
spanBuilder = tracer.buildSpan(operationName);
}
else {
spanBuilder = tracer.buildSpan(operationName).asChildOf(parentSpanCtx);
}
}
catch (IllegalArgumentException e) {
spanBuilder = tracer.buildSpan(operationName);
}