1

我在保存 zipkin 数据时遇到问题。我没有收到任何错误消息。所以我正在分享配置以获得帮助。

我可以在 zipkin UI 中看到我的日志,但无法坚持弹性搜索。

我的 zipkin-service pom 文件在下面共享。

    <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-starter-eureka</artifactId>
            </dependency>
            <dependency>
                <groupId>io.zipkin.java</groupId>
                <artifactId>zipkin-autoconfigure-ui</artifactId>
                <scope>runtime</scope>
            </dependency>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-sleuth-zipkin-stream</artifactId>
            </dependency>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-stream-binder-rabbit</artifactId>
            </dependency>
            <dependency>
                <groupId>io.zipkin.java</groupId>
                <artifactId>zipkin-autoconfigure-storage-elasticsearch-http</artifactId>
                <version>2.0.0</version>
            </dependency>

            <!-- add the dependency for elasticsearch via http -->

            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-test</artifactId>
                <scope>test</scope>
            </dependency>
        </dependencies>

我的属性看起来像这样

spring:
  profiles: local
  rabbitmq:
    host: ${RABBIT_HOST:localhost}
    username: test
    password: test

  zipkin:
    storage:
    type: elasticsearch
  elasticsearch:
    jest:
      uris: http://localhost:9200
4

0 回答 0