2

我在 Azure Kubernetes 集群中的监控命名空间中设置了 Jaeger,并部署了我的容器,该容器在监控域中使用 jaeger 客户端库进行了检测。该服务已启动并正在运行,当我在浏览器中指定 :/actuator 时,我可以使用执行器查看跟踪。但是 Jaeger UI 的服务下拉列表中没有填充相同的微服务。

以下是我正在使用的文件。

DemoOpentracingApplication.java

        @SpringBootApplication
        public class DemoOpentracingApplication {
            @Bean
            public RestTemplate restTemplate(RestTemplateBuilder restTemplateBuilder) {

                return restTemplateBuilder.build();
            }

            @Bean
            public io.opentracing.Tracer jaegerTracer() {
                return new Configuration("spribng-boot", new Configuration.SamplerConfiguration(ProbabilisticSampler.TYPE, 1),
                        new Configuration.ReporterConfiguration()).getTracer();
            }

            public static void main(String[] args) {
                SpringApplication.run(DemoOpentracingApplication.class, args);
            }
        }


    HelloController.java

    @RestController
    public class HelloController {

        @Autowired
        private RestTemplate restTemplate;


        //private final Counter totalRequests= Counter.build().name("requests_total").help("Total Number of Requests").register();

        @Timed(
                value= "prometheus.hello.request",
                histogram=true,
                percentiles= {0.95,0.99},
                extraTags= {"version","1.0"}
                )
        @RequestMapping("/hello")
        public String hello() {

            return ("Hello From OPenTracing Controller");
        }

        @Timed(
                value= "prometheus.chain.request",
                histogram=true,
                percentiles= {0.95,0.99},
                extraTags= {"version","1.0"}
                )
        @RequestMapping("/chaining")
        public String chaining() {
            ResponseEntity<String> response = restTemplate.getForEntity("http://localhost:8080/hello",String.class);
            return "Chaining+" + response.getBody();
        }
    }


POM.xml
.....
<dependency>
            <groupId>io.opentracing.contrib</groupId>
            <artifactId>opentracing-spring-web-autoconfigure</artifactId>
            <version>0.0.4</version>
        </dependency>
....

为什么检测服务没有填充到 Kubernetes 的 Jaeger UI 中?

4

1 回答 1

0

您可以通过将选项设置为 true 来打开客户端中的调试JAEGER_REPORTER_LOG_SPANS(或使用 中的相关选项ReporterConfiguration,因为您似乎就是这样使用它的)。

https://www.jaegertracing.io/docs/1.8/client-features/

确认正在生成跟踪并将其发送到代理后,将代理中的日志级别设置为debug

docker run -p... jaegertracing/jaeger-agent:1.8 --log-level=debug

如果您在日志中没有看到任何表明代理收到跨度(或跨度批次)的内容,那么您可能需要使用代理的地址(JAEGER_AGENT_HOSTJAEGER_AGENT_PORT,或对象中的相关选项Configuration)配置您的客户端。

您提到您正在 Azure AKS 中进行部署,因此,我猜代理在 不可用localhost,这是客户端发送跨度的默认位置。通常,在这种情况下,代理将被部署为边车:

https://github.com/jaegertracing/jaeger-kubernetes#deploying-the-agent-as-sidecar

于 2018-11-21T09:57:59.960 回答