2

在发布这个问题之前,我浏览了许多链接,例如:Unable to connect to Command Metric Stream for Hystrix Dashboard with Spring CloudUnable to connect to Command Metric Stream in Spring Cloud + Hystrix + Turbine - MIME type ("text/plain")那不是“文本/事件流”等等,但仍然对我不起作用。

我正在使用 Spring Boot V2.2.2.RELEASE。

2020-01-14 22:52:23.805  INFO 8436 --- [io-8080-exec-10] ashboardConfiguration$ProxyStreamServlet : 

Proxy opening connection to: http://localhost:8000/hystrix.stream


2020-01-14 22:52:23.806  INFO 8436 --- [nio-8080-exec-2] ashboardConfiguration$ProxyStreamServlet : 

Proxy opening connection to: http://localhost:8000/hystrix.stream


2020-01-14 22:52:24.442  WARN 8436 --- [io-8080-exec-10] ashboardConfiguration$ProxyStreamServlet : Failed opening connection to http://localhost:8000/hystrix.stream : 404 : HTTP/1.1 404 
2020-01-14 22:52:24.442  WARN 8436 --- [nio-8080-exec-2] ashboardConfiguration$ProxyStreamServlet : Failed opening connection to http://localhost:8000/hystrix.stream : 404 : HTTP/1.1 404 
2020-01-14 22:52:37.391  INFO 8436 --- [nio-8080-exec-8] ashboardConfiguration$ProxyStreamServlet : 

Proxy opening connection to: http://localhost:8080/hystrix.stream


2020-01-14 22:52:37.397  INFO 8436 --- [nio-8080-exec-9] ashboardConfiguration$ProxyStreamServlet : 

Proxy opening connection to: http://localhost:8080/hystrix.stream


2020-01-14 22:52:37.488  WARN 8436 --- [nio-8080-exec-8] ashboardConfiguration$ProxyStreamServlet : Failed opening connection to http://localhost:8080/hystrix.stream : 404 : HTTP/1.1 404 
2020-01-14 22:52:37.488  WARN 8436 --- [nio-8080-exec-9] ashboardConfiguration$ProxyStreamServlet : Failed opening connection to http://localhost:8080/hystrix.stream : 404 : HTTP/1.1 404 

在此处输入图像描述

hystrix 仪表板::

HystrixDashboardApplication.java

@SpringBootApplication
@EnableHystrixDashboard
public class HystrixDashboardApplication {

    public static void main(String[] args) {
        SpringApplication.run(HystrixDashboardApplication.class, args);
    }
}

引导程序属性

management.endpoints.web.exposure.include=hystrix.stream
management.endpoints.web.base-path=/
eureka.client.serviceUrl.defaultZone=http://localhost:8761/eureka

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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.2.2.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.example</groupId>
    <artifactId>spring-boot-jdbcBatchUpdate</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>hystrix-dashboard</name>
    <description>Demo project for Spring Boot</description>

    <properties>
        <java.version>1.8</java.version>
        <spring-cloud.version>Hoxton.SR1</spring-cloud.version>
        <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-hystrix-dashboard</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>org.junit.vintage</groupId>
                    <artifactId>junit-vintage-engine</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
    </dependencies>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-dependencies</artifactId>
                <version>${spring-cloud.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
</project>

天气应用程序::

天气服务.java

@Service
public class WeatherService {
    @Inject
    private RestTemplate restTemplate;

    @HystrixCommand(fallbackMethod="unknown")
    public String getWeather() {
        return restTemplate.getForEntity("http://weather-service/weather", String.class).getBody();
    }

    public String unknown() {
        System.out.println("~~~~~~~~~");
        return "unknown";
    }
}

WeatherAppApplication.java

@EnableDiscoveryClient
@EnableCircuitBreaker
@RestController
@SpringBootApplication
public class WeatherAppApplication {
    @Inject
    private WeatherService weatherService;

    public static void main(String[] args) {
        SpringApplication.run(WeatherAppApplication.class, args);
    }

    @Bean
    @LoadBalanced
    public RestTemplate restTemplate() {
        return new RestTemplate();
    }

    @GetMapping(value = "/current/weather")
    public String getWeather() {
        return "The current weather is " + weatherService.getWeather();
    }
}

应用程序属性

server.port=8000
spring.application.name=weather-app
eureka.client.service-url.defaultZone=http://localhost:8761/eureka

气象服务::

应用程序属性

server.port=9000
spring.application.name=weather-service
eureka.client.service-url.defaultZone=http://localhost:8761/eureka

WeatherServiceApplication.java

@RestController
@EnableDiscoveryClient
@SpringBootApplication
public class WeatherServiceApplication {

    private String[] weather = new String[] {"sunny", "cloudy", "rainy", "windy"};

    public static void main(String[] args) {
        SpringApplication.run(WeatherServiceApplication.class, args);
    }

    @GetMapping(value="/weather")
    public String getWeather() {
        int rand = ThreadLocalRandom.current().nextInt(0, 4);
        return weather[rand];
    }
}

在此处输入图像描述

源代码在这里:https ://github.com/javaHelper/spring-cloud-cordinating-services/tree/master/Protecting-Systems-with-Circuit-Breakers

4

5 回答 5

8

仪表板项目中将此添加到您的属性中

hystrix:
  dashboard:
    proxy-stream-allow-list: "*"

并且,在天气应用程序中添加这个

management:
  endpoints:
    web:
      exposure:
        include: "*"

然后,打开 http://localhost:8080/hystrix 并添加 http://localhost:8000/actuator/hystrix.stream

https://github.com/adetiamarhadi/spring-cloud-hystrix-dashboard.git https://github.com/adetiamarhadi/spring-cloud-hystrix-weather-app.git

于 2020-08-17T07:07:38.723 回答
1

尝试在对我有用的 Hystrix Dashboard 项目中添加以下行。

应用程序.yml

hystrix:
  dashboard:
    proxy-stream-allow-list: "*"
于 2020-08-15T06:58:00.583 回答
1

您必须提供的 Hystrix Dashboard 流 URL 现在是:

http://localhost:8000/actuator/hystrix.stream

于 2021-02-06T15:49:14.957 回答
0

将以下属性添加到application.properties文件

management.endpoints.web.exposure.include=*
hystrix.dashboard.proxy-stream-allow-list=*
于 2021-01-30T17:28:22.590 回答
-1

我刚刚在application.properties文件中添加了以下内容并开始工作:

management.endpoint.hystrix.stream.enabled=true
于 2020-10-11T11:37:52.240 回答