rename to /actuator/metric-links

This commit is contained in:
Michael Hoennig 2024-12-05 16:51:20 +01:00
parent 73016ae2fd
commit 31b4882065
4 changed files with 4 additions and 4 deletions

View File

@ -10,7 +10,7 @@ import org.springframework.web.servlet.support.ServletUriComponentsBuilder;
import java.util.List; import java.util.List;
@Component @Component
@Endpoint(id="custom") @Endpoint(id="metric-links")
public class CustomActuatorEndpoint { public class CustomActuatorEndpoint {
private final RestTemplate restTemplate = new RestTemplate(); private final RestTemplate restTemplate = new RestTemplate();

View File

@ -8,7 +8,7 @@ management:
endpoints: endpoints:
web: web:
exposure: exposure:
include: info, health, metrics, custom include: info, health, metrics, metric-links
observations: observations:
annotations: annotations:
enabled: true enabled: true

View File

@ -27,7 +27,7 @@ class CustomActuatorEndpointAcceptanceTest {
.given() .given()
.port(managementPort) .port(managementPort)
.when() .when()
.get("http://localhost/actuator/custom") .get("http://localhost/actuator/metric-links")
.then().log().all().assertThat() .then().log().all().assertThat()
.statusCode(200) .statusCode(200)
.contentType("application/vnd.spring-boot.actuator.v3+json") .contentType("application/vnd.spring-boot.actuator.v3+json")

View File

@ -6,7 +6,7 @@ management:
endpoints: endpoints:
web: web:
exposure: exposure:
include: info, health, metrics, custom include: info, health, metrics, metric-links
spring: spring:
sql: sql: