当前位置:   article > 正文

Eureka客户端-Hystrix监控页面(Dashboard)_eureka重做服务监控页面

eureka重做服务监控页面

1.pom.xml

  1. <properties>
  2. <java.version>1.8</java.version>
  3. <spring-cloud.version>Finchley.SR1</spring-cloud.version>
  4. </properties>
  5. <dependencyManagement>
  6. <dependencies>
  7. <dependency>
  8. <groupId>org.springframework.cloud</groupId>
  9. <artifactId>spring-cloud-dependencies</artifactId>
  10. <version>${spring-cloud.version}</version>
  11. <type>pom</type>
  12. <scope>import</scope>
  13. </dependency>
  14. </dependencies>
  15. </dependencyManagement>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-test</artifactId>
  24. <scope>test</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.cloud</groupId>
  28. <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.cloud</groupId>
  32. <artifactId>spring-cloud-starter-netflix-hystrix-dashboard</artifactId>
  33. </dependency>
  34. </dependencies>

2、application.yml

  1. spring:
  2. application:
  3. name: service-hystrix-dashboard
  4. server:
  5. port: 8605

3、启动类

  1. @EnableHystrixDashboard
  2. @SpringBootApplication
  3. public class EurekaClientHystrixDashboardApplication {
  4. public static void main(String[] args) {
  5. SpringApplication.run(EurekaClientHystrixDashboardApplication.class, args);
  6. }
  7. }

4、访问页面

4、进入页面

以上图来说明其中各元素的具体含义:

  • 实心圆:它有颜色和大小之分,分别代表实例的监控程度和流量大小。如上图所示,它的健康度从绿色、黄色、橙色、红色递减。通过该实心圆的展示,我们就可以在大量的实例中快速的发现故障实例和高压力实例。
  • 曲线:用来记录 2 分钟内流量的相对变化,我们可以通过它来观察到流量的上升和下降趋势。
  • 其他一些数量指标如下图所示

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/955889
推荐阅读
相关标签
  

闽ICP备14008679号