我是opentracing的新手。到目前为止,我主要是在房屋追踪工具中工作。服务器无法提取跨度上下文。
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);
}
final HashMap<String, String> headers = new HashMap<String, String>();
...
if(key.contentEquals("deviceKey"))
headers.put(key, rawHeaders.get(key).get(0));
...
tracer.extract(Format.Builtin.HTTP_HEADERS, new TextMapExtractAdapter(headers))
您似乎正在尝试根据仅包含名为deviceKey
的密钥的地图提取上下文。除非您使用自定义示踪剂,否则您应该真正将所有HTTP标头传递给#extract()
方法。