Spring Boot v2.2.6.RELEASE и Turbine - невозможно объединить метрику - PullRequest
0 голосов
/ 25 апреля 2020

Я работаю над Spring Boot v2.2.6.RELEASE + Eureka + Hystrix и Turbine . Перед тем, как опубликовать этот вопрос, я просмотрел множество ссылок, таких как:

Но ни одно из решений не помогло мне.

application.properties

server.port=8085
eureka.client.register-with-eureka=false
management.endpoints.web.cors.allowed-origins=true

#turbine settings
turbine.app-config=tollrate-billboard,fastpass-console
turbine.aggregator.clusterConfig=TOLLRATE-BILLBOARD,FASTPASS-CONSOLE
turbine.cluster-name-expression= new String("default")
turbine.combine-host-port=true
turbine.instanceUrlSuffix.default=/hystrix.stream

CoHystrixDashboardApplication. java

@EnableTurbine
@EnableHystrixDashboard
@SpringBootApplication
public class CoHystrixDashboardApplication {

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

enter image description here

Даже если я многократно нажимаю на URL: http://localhost:8082/customerdetails?fastpassid=101, сводные данные не поступают в Hystrix.

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.6.RELEASE</version>
        <relativePath /> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.example</groupId>
    <artifactId>co-hystrix-dashboard</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>co-hystrix-dashboard</name>
    <description>Demo project for Spring Boot</description>

    <properties>
        <java.version>1.8</java.version>
        <spring-cloud.version>Hoxton.SR3</spring-cloud.version>
        <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>
        <!--  Actuator -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>

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

        <!-- Turbine -->
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>
                spring-cloud-starter-netflix-turbine
            </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>
    </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>

enter image description here

1 Ответ

0 голосов
/ 26 апреля 2020

Я смог решить эту проблему, используя следующие изменения -

Мне пришлось удалить management.endpoints.web.base-path=/ из fastpass-console и tollrate-billboard.

Теперь, когда я хит: http://localhost:8085/turbine.stream?cluster=TOLLRATE-BILLBOARD, я получаю детали здесь -

enter image description here

Теперь, когда я нажимаю: **http://localhost:8085/turbine.stream?cluster=FASTPASS-CONSOLE**, я получаю детали здесь -

enter image description here

...