Hystrix and Hystrix Dashboard

Hystrix and Hystrix Dashboard

Hystrix official knowledge

wiki: https://github.com/Netflix/Hystrix/wiki

config: https://github.com/Netflix/Hystrix/wiki/Configuration

Hystrix coding
dependency:
<dependency>
	<groupId>org.springframework.cloud</groupId>
	<artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
</dependency>
Add @EnableCircuitBreaker to enable Hystrix
@EnableCircuitBreaker
@SpringBootApplication
public class HystrixApplication {
    public static void main(String[] args) {
        SpringApplication.run(HystrixApplication.class, args);
    }
}
timeout setting in application file
hystrix:
  command:
    default:
      execution:
        isolation:
          thread:
            timeoutInMilliseconds: 5000
Based on the above settings,Hystrix can run successfully.
Other settings
Fallback method

If Hystrix trigger by timeout, will call fallback method

Add @HystrixCommand on endpoint method,
@GetMapping("test")
    @HystrixCommand(fallbackMethod = "testFB")
    public ResultBean test(){
        System.out.println("success not from Hystrix");
        return ResultBean.SUCCESS("success not from Hystrix");
    }

    public ResultBean testFB() {
        System.out.println("Hystrix!!!!!!!!!!!");
        return ResultBean.FAIL("Hystrix!!!!!!!!!!!");
    }
}
Hystrix Dashboard

Hystrix dashboard can monitor Hystrix in real time

Add actuator dependency in Hystrix project
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
Exposure monitoring endpoint of Hystrix project
management:
  endpoints:
    web:
      exposure:
        include: hystrix.stream
server:
  port: 3001
Get monitor endpoint
  • http://localhost:3001/actuator
  • 在这里插入图片描述
Create a new Hystrix Dashboard project
Dependency
<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-netflix-hystrix-dashboard</artifactId>
</dependency>
application setting
spring:
  application:
    name: hystrix-dashboard

server:
  port: 4001

hystrix:
  dashboard:
    proxy-stream-allow-list: localhost
Add @EnableHystrixDashboard to enable Hystrix Dashboard
@SpringBootApplication
@EnableHystrixDashboard
public class Sp08HystrixDashboardApplication {

    public static void main(String[] args) {
        SpringApplication.run(Sp08HystrixDashboardApplication.class, args);
    }
    
}
Based on the above settings,Hystrix Dashboard can run successfully.
Connect Hystrix Dashboard
  • http://localhost:4001/hystrix

    Fill in the exposure endpoint get from Hystrix project
    在这里插入图片描述
    Click monitor stream button
    在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值