spring cloud 的监控turbine-rabbitmq的示例
前提是你已经有了注册中心,然后搭建一个基础spring cloud 服务,并配置注册服务等等前提环境搭建
接下来描述的服务提供者和服务调用者的配置都是一样的,来自《spring cloud 与 docker微服务架构实战》的读后的个人总结.
pom文件中需要引入spring-cloud-starter-hystrix/spring-cloud-starter-hystrix-dashboard/spring-cloud-netflix-hystrix-stream/spring-cloud-starter-turbine-stream/spring-cloud-starter-stream-rabbit
如下
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-hystrix</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-hystrix-dashboard</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-netflix-hystrix-stream</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-turbine-stream</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-stream-rabbit</artifactId> </dependency>
启动类需要添加如下注解
/*turibine监控*/ @EnableTurbineStream @EnableCircuitBreaker /*Dashboard监控*/ @EnableHystrixDashboard
接下来的操作才是关键
1,将注册中心 服务提供者 服务调用者 都启动
2.访问服务提供者 ip:port/hystrix 如图
3. 图中总共有三个文本框,其中第一个文本框是必填的,填写的是服务调用者的 ip:port/hystrix.stream,然后点击Monitor Stream.
4. 注意,如果第一个文本框填写的不正确会展示如下内容
5. 访问服务调用者,当然,该服务调用者提供的接口需要调用服务提供者提供的接口的
6.这时候就能看到如下内容,就证明你成功了
访问hystrix.stream
访问该连接时,想要出现如下的情况
这个就要访问服务提供者的 ip:port/hystrix.stream
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
相关文章
关于eclipse安装spring插件报错An error occurred while collecting item
这篇文章主要介绍了关于eclipse安装spring插件报错An error occurred while collecting items to be installed...解决方案,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2019-08-08java 中Executor, ExecutorService 和 Executors 间的不同
这篇文章主要介绍了java 中Executor, ExecutorService 和 Executors 间的不同的相关资料,需要的朋友可以参考下2017-06-06MyBatis Generator快速生成实体类和映射文件的方法
这篇文章主要介绍了MyBatis Generator快速生成实体类和映射文件的方法,通过示例代码介绍了MyBatis Generator 的使用,本文结合示例代码给大家介绍的非常详细,需要的朋友可以参考下2023-10-10JDK1.7 之java.nio.file.Files 读取文件仅需一行代码实现
下面小编就为大家分享一篇JDK1.7 之java.nio.file.Files 读取文件仅需一行代码实现,具有很好的参考价值,希望对大家有所帮助2017-11-11SpringBoot使用WebSocket实现前后端交互的操作方法
springboot使用websocket有两种方式,一种是实现简单的websocket,另外一种是实现STOMP协议,本篇讲述如何使用springboot实现简单的websocket,需要的朋友可以参考下2022-04-04
最新评论