首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Spring Boot v2.2.6. Turbine和透平-无法聚合metrix

Spring Boot v2.2.6. Turbine和透平-无法聚合metrix
EN

Stack Overflow用户
提问于 2020-04-25 19:04:55
回答 1查看 480关注 0票数 0

我正在开发SpringBootv2.2.6。Turbine+ Eureka + Hystrix和涡轮。在发布这个问题之前,我浏览了许多链接,如:

但这两种解决方案对我都没有用。

application.properties

代码语言:javascript
复制
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

代码语言:javascript
复制
@EnableTurbine
@EnableHystrixDashboard
@SpringBootApplication
public class CoHystrixDashboardApplication {

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

即使我多次点击url:http://localhost:8082/customerdetails?fastpassid=101,总细节也不会出现在Hystrix上。

pom.xml

代码语言:javascript
复制
<?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>

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2020-04-26 13:17:39

我可以用下面的修改来解决这个问题-

我不得不从fastpass-consoletollrate-billboard中删除management.endpoints.web.base-path=/

当我击中:http://localhost:8085/turbine.stream?cluster=TOLLRATE-BILLBOARD,我在这里得到了详细信息-

当我击中:**http://localhost:8085/turbine.stream?cluster=FASTPASS-CONSOLE**,我在这里得到了详细信息-

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/61431036

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档