首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
社区首页 >问答首页 >Zipkin UI显示错误消息:“错误:无法加载服务名称:没有可用的消息”

Zipkin UI显示错误消息:“错误:无法加载服务名称:没有可用的消息”
EN

Stack Overflow用户
提问于 2018-04-25 08:27:13
回答 2查看 2.5K关注 0票数 2

试图创建zipkin服务器,在gradle中添加依赖项,如下所示,

代码语言:javascript
运行
AI代码解释
复制
compile ("org.springframework.cloud:spring-cloud-starter-zipkin")
compile ("org.springframework.amqp:spring-rabbit")
compile('io.zipkin.java:zipkin-autoconfigure-ui')

另外,

我在application.properties和bootstrap.properties文件中都添加了属性,

application.properties

代码语言:javascript
运行
AI代码解释
复制
server.port=8085

bootstrap.properties

代码语言:javascript
运行
AI代码解释
复制
spring.application.name=zipkin-server

一旦启动服务器并加载UI页面,就会在UI中获得错误,

EN

回答 2

Stack Overflow用户

发布于 2018-06-24 08:10:20

你好,看到您的屏幕截图--也许您使用的是spring 2.x版本--我在使用Finchley.RELEASE的SpringBoot2.0.3中也遇到了同样的问题。

我发现Zipkin自定义服务器不再受支持,因此不能在Spring代码中使用@EnableZipkinServer,而且您有ui,但没有配置服务器端、api端点等等。

形成Zipkin的基本代码:

代码语言:javascript
运行
AI代码解释
复制
/**
 * @deprecated Custom servers are possible, but not supported by the community. Please use our
 * <a href="https://github.com/openzipkin/zipkin#quick-start">default server build</a> first. If you
 * find something missing, please <a href="https://gitter.im/openzipkin/zipkin">gitter</a> us about
 * it before making a custom server.
 *
 * <p>If you decide to make a custom server, you accept responsibility for troubleshooting your
 * build or configuration problems, even if such problems are a reaction to a change made by the
 * OpenZipkin maintainers. In other words, custom servers are possible, but not supported.
 */
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Import(InternalZipkinConfiguration.class)
@Deprecated
public @interface EnableZipkinServer {

}

代码可在Zipkin的官方回购上使用,我使用带有组合的正式对接者映像来解决我的问题

代码语言:javascript
运行
AI代码解释
复制
version: '3.1'

services:
  rabbitmq:
    image: rabbitmq:3-management
    restart: always
    ports:
      - 5672:5672
      - 15671:15671
      - 15672:15672
    networks:
      - messaging

  zipkin-server:
    image: openzipkin/zipkin
    ports:
      - 9065:9411
    environment:
      - zipkin.collector.rabbitmq.uri=amqp://guest:guest@rabbitmq:5672
    networks:
      - messaging

networks:
  messaging:
    driver: bridge

你怎么看我用的是流媒体版本。它为我工作

我希望这能帮到你

票数 2
EN

Stack Overflow用户

发布于 2019-01-24 12:47:42

试着用这个:

代码语言:javascript
运行
AI代码解释
复制
<dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-sleuth</artifactId>
        </dependency>
        <dependency>
          <groupId>io.zipkin.java</groupId>
          <artifactId>zipkin-server</artifactId>
          <version>2.12.0</version>
        </dependency>
        <dependency>
            <groupId>io.zipkin.java</groupId>
            <artifactId>zipkin-autoconfigure-ui</artifactId>
            <scope>runtime</scope>
            <version>2.12.0</version>
        </dependency>
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/50027127

复制
相关文章

相似问题

领券
社区富文本编辑器全新改版!诚邀体验~
全新交互,全新视觉,新增快捷键、悬浮工具栏、高亮块等功能并同时优化现有功能,全面提升创作效率和体验
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档
查看详情【社区公告】 技术创作特训营有奖征文