我将jaeger安装在Docker中的方法如下:
docker run --rm --name jaeger -p 5775:5775/udp -p 6831:6831/udp -p 6832:6832/udp -p 5778:5778 -p 16686:16686 -p 14267:14267 -p 14268:14268 -p 9411:9411 jaegertracing/all-in-one:1.7
下面是有关如何初始化跟踪器和跨度的示例代码。 我在控制台中获取了日志,但是它没有反映在Jaeger UI中。
有人可以帮我吗?
logging = new LoggingReporter();
SamplerConfiguration sampler = new SamplerConfiguration();
sampler.withType("const");
sampler.withParam(1);
ReporterConfiguration reporter = new ReporterConfiguration();
reporter.withLogSpans(true);
reporter.withSender(sender);
tracer = Configuration.fromEnv("sample_jaeger").withSampler(sampler).withReporter(reporter).getTracer();
Scope scope = tracer.buildSpan("parent-span").startActive(true);
Tags.SAMPLING_PRIORITY.set(scope.span(), 1);
scope.span().setTag("this-is-test", "YUP");
logging.report((JaegerSpan) scope.span());
答案 0 :(得分:0)
您是否正在关闭跟踪器和示波器?如果您使用的是0.32.0之前的版本,则应在进程终止之前手动调用tracer.close()
,否则可能不会分派缓冲区中的跨度。
对于范围,通常将其包装在try-with-resources语句中:
try (Scope scope = tracer.buildSpan("parent-span").startActive(true)) {
Tags.SAMPLING_PRIORITY.set(scope.span(), 1);
scope.span().setTag("this-is-test", "YUP");
logging.report((JaegerSpan) scope.span());
}
您可能还想查看https://github.com/yurishkuro/opentracing-tutorial的OpenTracing教程或https://www.katacoda.com/courses/opentracing的基于Katacoda的版本
-编辑
并部署在其他主机名和端口上
然后,您确实需要告诉跟踪器将跟踪发送到哪里。导出JAEGER_ENDPOINT
环境变量以指向收集器端点,或者使用代理的位置设置JAEGER_AGENT_HOST
/ JAEGER_AGENT_PORT
。您可以在以下URL上检查客户端的可用环境变量:https://www.jaegertracing.io/docs/1.7/client-features/