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 actuatorSpring 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 actuatorIn my application.yml: endpoints: restart: enabled: true shutdown: enabled: true health: sensitive: false but when I request /health, I …
spring spring-boot actuator