Top "Spring-boot-actuator" questions

Spring Boot Actuator is a sub-project of Spring Boot.

Difference between Spring controller and Endpoint

Spring boot actuator provides some endpoints like health, metrics, info. It also allows us to write our own custom endpoints. …

java spring spring-boot spring-mvc spring-boot-actuator
Disable and Replace Default DataSourceHealthIndicator

I am currently working with a health monitoring framework implemented using the Spring Boot Actuator "health" endpoint. The Actuator infrastructure …

java spring spring-boot health-monitoring spring-boot-actuator
Using prometheus custom metrics with SpringBoot

I'm not sure it's a bug but I'm trying to implement this library in the past day without any results. …

spring-boot prometheus spring-boot-actuator prometheus-java
Spring Boot Actuator to Give CPU Usage

I would like to know is there a way to get the CPU Usage metrics with Spring Boot Actuator? Im …

cpu-usage metrics spring-boot-actuator
How to override Spring Boot health response codes

How to override actuator's default /health response status code based on its state:DOWN, UP, UNKNOWN so and so ? For …

java spring-boot spring-boot-actuator
What's the difference between management.server.port and management.port properties?

To run Actuator on a separate port we write management.server.port: 9001 in the application.properties file. But there is …

spring-boot-actuator