这是一个从零开始的springcloud的系列教程,如果你从中间开始看,可能会看不明白.进入我的博客查看其他文章
前言
在之前课程中,我们学会创建了多工程项目,spring-cloud-learn.
搭建的项目有:
- eureka-server:服务治理中心,为微服务提供注册和管理
- eureka-client:在此工程学会了如何向服务端注册,如何发现其他服务,学会如何使用ribbon+restTemplate来访问eureka-client2的服务.
- eureka-client2: 提供了简单的api供eureka-client访问
- eureka-client-feign:在此工程学会了如何使用feign来访问eureka-client提供的api,如何使用feign提供的熔断器(hystrix)来防治雪崩效应
如何观察一个微服务的熔断状态呢,使用Netflix提供的hystrix-dashboard来观察一个微服务的熔断状态.spring-boot-actuator组件提供持续的熔断状态检查
在开始前
- 启动eureka-server服务
spring boot actuator
actuator是spring boot项目中非常强大一个功能,有助于对应用程序进行监视和管理,通过 restful api 请求来监管、审计、收集应用的运行情况,针对微服务而言它是必不可少的一个环节…
hytrix就是使用它来实时收集熔断信息
Hytrix-Dashboard监控
在微服务架构中为例保证程序的可用性,防止程序出错导致网络阻塞,出现了断路器模型。断路器的状况反应了一个程序的可用性和健壮性,它是一个重要指标。Hystrix Dashboard是作为断路器状态的一个组件,提供了数据监控和友好的图形化界面。
沿用上节课创建eureka-client-feign工程,修改eureka-client-feign工程.
pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>spring-cloud-learn</artifactId>
<groupId>com.jack</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>eureka-client-feign</artifactId>
<dependencies>
<!--
一定要写称spring-cloud-starter-netflix-eureka-client
如果写错成spring-cloud-netflix-eureka-client,将无法注册
-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
<!--引入feign-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-openfeign</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!--引入hytrix-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
</dependency>
<!--引入hytrix dashboard-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-hystrix-dashboard</artifactId>
</dependency>
<!--
spring-boot-starter-actuator
springboot的Actuator提供了运行状态监控的功能,可以通过REST、远程Shell和JMX方式来查看
-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
</dependencies>
</project>
修改EurekaClientFeignApplication
package com.jack.feign;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.netflix.hystrix.EnableHystrix;
import org.springframework.cloud.netflix.hystrix.dashboard.EnableHystrixDashboard;
import org.springframework.cloud.openfeign.EnableFeignClients;
@SpringBootApplication
@EnableDiscoveryClient
// 启动feign的注解
@EnableFeignClients
// 启动dashboard
@EnableHystrixDashboard
// 启动hystrix
@EnableHystrix
public class EurekaClientFeignApplication {
public static void main(String[] args) {
SpringApplication.run(EurekaClientFeignApplication.class, args );
}
}
application.yml需要加入以下配置,非常关键,因为数据是通过springboot的actuator来持续返回的,我们需要让actuator开放节点给我们,它默认开放health和info来个节点
# springboot的Actuator提供了运行状态监控的功能,可以通过REST、远程Shell和JMX方式来查看。
# 这个配置非常重要,否则会导致/actuator/hystrix.stream无法访问,hystrix.stream节点会持续提供熔断状态
management:
endpoints:
web:
# 2.0之前默认是/ 2.0默认是 /actuator
# base-path: /actuator
# 显示健康具体信息 默认不会显示详细信息
# management.endpoint.health.show-details=always
exposure:
# 默认开启health、info,可以通过/actuator/info访问,如果要暴露所有接口,填"*"
include: hystrix.stream
cors:
allowed-origins: "*"
allowed-methods: "*"
ok,启动服务,访问http://localhost:7773/actuator/hystrix.stream,会发现不断有数据返回,不过因为没有访问api,返回都是空
当我们访问http://localhost:7773/hello_store api (eureka-client服务没有启动)
此时服务就会出现数据
我们来打开图形界面控制面板,http://localhost:7773/hystrix
对着中间输入我们运行状态流服务节点http://localhost:7773/actuator/hystrix.stream
点击monitor stream.观察流.并且请求一次localhost:7773/hello_store服务.会发现出现一次错误.方法为FeignService#sayStore
这样我们就可以通过dashboard来观察熔断器的状态了.
但是这个远远是不够的,只能观察一台机器,并没有什么意义.接下来我们会介绍turbine.可以收集所有服务熔断器状态流