Spring Boot - Actuator
Why does this custom actuator endpoint fail to expose data?
@Component
@Endpoint(id = "info")
public class InfoEndpoint {
public String details() {
return "Details";
}
}
Accessing /actuator/info returns 404.
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions