博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
005hystrix.stream信息聚合Turbine
阅读量:5235 次
发布时间:2019-06-14

本文共 1546 字,大约阅读时间需要 5 分钟。

1、POM配置

  和普通Spring Boot工程相比,仅仅添加了Turbine和Spring Boot Starter Actuator依赖

  
  
    
org.springframework.cloud
    
spring-cloud-starter-turbine
  
  
  
    
org.springframework.cloud
    
spring-cloud-netflix-turbine
  
  
    
org.springframework.boot
    
spring-boot-starter-actuator
  
  
    
      
org.springframework.cloud
      
spring-cloud-dependencies
      
Dalston.SR2
      
pom
      
import
      
  

02、使能Eureka Server

@SpringBootApplication@EnableTurbine//使能Turbinepublic class Application {    public static void main(String[] args) { SpringApplication.run(Application.class, args); } }

03、src/main/resources工程配置文件application.yml内容如下

spring:   application.name: turbine-service-monitoring server:   port: 4001 #security.basic.enabled: false turbine:   aggregator:     clusterConfig: default   # 指定聚合哪些集群,多个使用","分割,默认为default。   appConfig: ribbon-hello-service-consumer, feign-hello-service-consumer   ### 配置Eureka中的serviceId列表,表明监控哪些服务   clusterNameExpression: new String("default") eureka:   client:     serviceUrl:       defaultZone: http://discovery:1000/eureka/

转载于:https://www.cnblogs.com/geniushuangxiao/p/7219507.html

你可能感兴趣的文章
auth模块
查看>>
javascript keycode大全
查看>>
前台freemark获取后台的值
查看>>
log4j.properties的作用
查看>>
游戏偶感
查看>>
Leetcode: Unique Binary Search Trees II
查看>>
C++ FFLIB 之FFDB: 使用 Mysql&Sqlite 实现CRUD
查看>>
Spring-hibernate整合
查看>>
c++ map
查看>>
exit和return的区别
查看>>
discuz 常用脚本格式化数据
查看>>
洛谷P2777
查看>>
PHPStorm2017设置字体与设置浏览器访问
查看>>
SQL查询总结 - wanglei
查看>>
安装cocoa pods时出现Operation not permitted - /usr/bin/xcodeproj的问题
查看>>
GIT笔记:将项目发布到码云
查看>>
JavaScript:学习笔记(7)——VAR、LET、CONST三种变量声明的区别
查看>>
JavaScript 鸭子模型
查看>>
SQL Server 如何查询表定义的列和索引信息
查看>>
GCD 之线程死锁
查看>>