springcloud2.0 -- dashboard

pom依赖

    
        
            org.springframework.boot
            spring-boot-starter
        
        
            org.springframework.cloud
            spring-cloud-starter-netflix-hystrix-dashboard
            2.0.2.RELEASE
        
        
            org.springframework.boot
            spring-boot-starter-test
            test
        
    

启动类加上注解

@SpringBootApplication
@EnableHystrixDashboard
public class ExampleDashboardApplication {

    public static void main(String[] args) {
        SpringApplication.run(ExampleDashboardApplication.class, args);
    }

}

配置文件

server:
  port: 8753

这个章节没有太多需要说明的,简单配置后就可以启动了,打开是一个页面,同时dashboard可以不需要加入到eureka,因为他挂掉不会影响整体业务。他的唯一功能就是查看一下其他模块的流量。
访问地址: http://localhost:port/hystrix 这个是页面的地址。
springcloud2.0 -- dashboard_第1张图片
注意下红线框中中的内容,第一条指的是聚合流量的地址组成方式,这个组成的地方放到哪个输入框就可以监控到内容了。
第二条指的是可以单一的监控某个模块,cluster=实例名称,后面加上你实例注册到eureka的名称就可以了。
最后一条是单一模块的访问方式,注意地址中间有 actuator。这个actuator需要你的采集的端点 (在本例中是actuator) 引入一个依赖

        
            org.springframework.boot
            spring-boot-starter-actuator
        

最后

以上是初步对sprngcloud2.0的探索,很多内容是自己的理解,并不代表就是正确的使用。
很多地方还有一些困惑,同时还有一些模块没有加入进来,比如config和zipkin,后续有时间将会继续完善已经改正。

你可能感兴趣的:(java)