elasticsearch Zipkin数据无法在弹性搜索中持久化,elasticsearch,spring-cloud,zipkin,elasticsearch,Spring Cloud,Zipkin" /> elasticsearch Zipkin数据无法在弹性搜索中持久化,elasticsearch,spring-cloud,zipkin,elasticsearch,Spring Cloud,Zipkin" />

elasticsearch Zipkin数据无法在弹性搜索中持久化

elasticsearch Zipkin数据无法在弹性搜索中持久化,elasticsearch,spring-cloud,zipkin,elasticsearch,Spring Cloud,Zipkin,我在持久化zipkin数据时遇到问题。我没有收到任何错误消息。因此,我正在共享配置以获得帮助 我可以在ZipkinUI中看到我的日志,但无法在弹性搜索中持久化 我的zipkin服务pom文件在下面共享 <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <

我在持久化zipkin数据时遇到问题。我没有收到任何错误消息。因此,我正在共享配置以获得帮助

我可以在ZipkinUI中看到我的日志,但无法在弹性搜索中持久化

我的zipkin服务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>

弹性搜索和Rabbitmq正在运行。我检查了弹性搜索数据日志,但找不到任何内容。弹性搜索和Rabbitmq正在运行。我查了弹性搜索数据日志,什么也没找到。
spring:
  profiles: local
  rabbitmq:
    host: ${RABBIT_HOST:localhost}
    username: test
    password: test

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