我是OpenTracing的新手。到目前为止,我主要从事房屋跟踪工具的工作。服务器无法提取span上下文。
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);
}发布于 2019-03-06 14:06:36
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()方法。
https://stackoverflow.com/questions/54989788
复制相似问题