标签:
一、基本方式
二、实现流程
三、Hystrix event types
1、什么情况下会触发fallback方法?
2、fallback方法在什么情况下会抛出异常
四、metrics storage
1、实现原理
2、存储结构
2.1、高于1.4.x版本
注意:
2.2、HystrixRollingNumber
当执行一个command的时候,HystrixRollingNumber会被初始化
五、metrics reads
1、所有hystrix-contrib中的metrics publishers and streams可以从上述的数据结构中读取信息。
2、数据结构只存储了最新的值,我们想看之前的值,只能通过分析HystrixRequestLog
3、The HystrixRequestLog
tracks all events in a request, and makes them available as a string。
六、metrics event stream
1、原理
2、
七、metrics publisher
附6 hystrix metrics and monitor
标签:
原文地址:http://www.cnblogs.com/java-zhao/p/5813203.html