Prometheus抛出“服务器返回的HTTP状态500内部服务器错误”

时间:2020-04-24 11:37:04

标签: spring-boot prometheus grafana spring-boot-actuator prometheus-operator

在multimaven模块项目中,当我尝试访问Prometheus形式的执行器时,会引发内部服务器错误,但能够正确访问执行器。

添加了以下依赖性:

<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
        <!-- Micormeter core dependecy -->
        <dependency>
            <groupId>io.micrometer</groupId>
            <artifactId>micrometer-core</artifactId>
        </dependency>
        <!-- Micrometer Prometheus registry -->
        <dependency>
            <groupId>io.micrometer</groupId>
            <artifactId>micrometer-registry-prometheus</artifactId>
        </dependency>

还添加了application.properties:

management.endpoints.web.exposure.include=*

我陷入了困境。

enter image description here

0 个答案:

没有答案