• springcloud断路器Dashboard监控仪表盘的使用


    断路器Dashboard监控仪表盘的使用

    在原有的orderserverfeignhystrix服务中使用

    1、增加依赖仓库

                 <dependency>

    <groupId>org.springframework.cloud</groupId>

    <artifactId>spring-cloud-starter-netflix-hystrix-dashboard</artifactId>

    </dependency>

     

    <dependency>

    <groupId>org.springframework.boot</groupId>

    <artifactId>spring-boot-starter-actuator</artifactId>

    </dependency>

    2、启动类增加注解

        @EnableHystrixDashboard

    3、配置文件增加配置

    management:

    endpoints:

    web:

    exposure:

    include: "*"

    4、访问链接

    4、访问入口

        http://localhost:8651/hystrix

     

        Hystrix Dashboard输入: http://localhost:8651/actuator/hystrix.stream

  • 相关阅读:
    JavaScrip 数组/字典/循环
    初识javaScript
    css内容补充之其它
    position
    css的存在形式
    CSS选择器
    Html的Head内标签
    Linux设置FQDN
    saltstack 全面介绍
    jQuery文档处理
  • 原文地址:https://www.cnblogs.com/programer-xinmu78/p/10546090.html
Copyright © 2020-2023  润新知