Top "Actuator" questions

Spring boot actuator health endpoint

I have create a PostgreSQL health indicator like this: @Component public class PostgresHealthIndicator extends AbstractHealthIndicator { @Autowired DataSource postgresDataSource; public DataSourceHealthIndicator …

spring spring-boot spring-boot-actuator actuator
Spring Boot 2 Custom Actuator Endpoints

Spring Noob: OK. I start with a STS Spring Starter Project / Maven / Java 8 / Spring Boot 2.0, and select the Web and …

java spring spring-boot endpoint actuator
No effect when setting endpoints.health.sensitive=false in spring boot actuator

In my application.yml: endpoints: restart: enabled: true shutdown: enabled: true health: sensitive: false but when I request /health, I …

spring spring-boot actuator