rename to /actuator/metric-links
This commit is contained in:
parent
73016ae2fd
commit
31b4882065
@ -10,7 +10,7 @@ import org.springframework.web.servlet.support.ServletUriComponentsBuilder;
|
||||
import java.util.List;
|
||||
|
||||
@Component
|
||||
@Endpoint(id="custom")
|
||||
@Endpoint(id="metric-links")
|
||||
public class CustomActuatorEndpoint {
|
||||
|
||||
private final RestTemplate restTemplate = new RestTemplate();
|
||||
|
@ -8,7 +8,7 @@ management:
|
||||
endpoints:
|
||||
web:
|
||||
exposure:
|
||||
include: info, health, metrics, custom
|
||||
include: info, health, metrics, metric-links
|
||||
observations:
|
||||
annotations:
|
||||
enabled: true
|
||||
|
@ -27,7 +27,7 @@ class CustomActuatorEndpointAcceptanceTest {
|
||||
.given()
|
||||
.port(managementPort)
|
||||
.when()
|
||||
.get("http://localhost/actuator/custom")
|
||||
.get("http://localhost/actuator/metric-links")
|
||||
.then().log().all().assertThat()
|
||||
.statusCode(200)
|
||||
.contentType("application/vnd.spring-boot.actuator.v3+json")
|
||||
|
@ -6,7 +6,7 @@ management:
|
||||
endpoints:
|
||||
web:
|
||||
exposure:
|
||||
include: info, health, metrics, custom
|
||||
include: info, health, metrics, metric-links
|
||||
|
||||
spring:
|
||||
sql:
|
||||
|
Loading…
Reference in New Issue
Block a user