/执行器/普罗米修斯在@SpringbootTest中缺失
我正在使用springbooot 2.4.0,并添加了以下依赖项来启用prometheus指标:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-registry-prometheus</artifactId>
</dependency>
那么在我的应用程序中,属性我有以下属性
management.endpoints.web.exposure.include=*
management.metrics.enable.all=true
我正在尝试运行一个简单的集成测试,以查看我的自定义指标显示在/actuator/prometheus端点处。代码下方
package com.example.demo;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.boot.web.server.LocalServerPort;
import static io.restassured.RestAssured.given;
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
public class IntegrationTest {
@LocalServerPort
private int port;
private String baseUrl;
@BeforeEach
public void setup() {
baseUrl = "http://localhost:" + port;
}
@Test
public void metricsEndpoint() throws Exception {
given().when().get(baseUrl + "/demo/actuator/prometheus")
.then()
.statusCode(200);
}
}
我在这里得到的错误是
java.lang.AssertionError: 1 expectation failed.
Expected status code <200> but was <404>.
而如果我对 Springboot 执行器提供的任何其他端点重复相同的请求,我会正确获得响应,例如,我尝试了 /actuator/health、/actuator/info、/actuator/metrics 等。
这只会在带有@Springboot注释的集成测试期间发生,这很奇怪,因为如果我运行我的应用程序并向postman发出请求,地址为localhost:8080 / actuator / prometheus,我会正确获得响应。
这就像在测试期间没有加载prometheus注册表一样。
任何人都可以帮忙吗?
提前致谢。
编辑:解决方案是Johannes Klug提出的解决方案。添加注释@AutoConfigureMetrics解决了我的问题