Spring Boot Actuator is a sub-project of Spring Boot.
I'm working on Spring Boot application and i use Swagger for the documentation. I have adding Spring Boot Actuator on …
spring-boot swagger spring-boot-actuatorIn our Spring Boot app we have are using spring-security-ldap to authenticate users that can access our app. We don't …
spring spring-boot spring-ldap spring-boot-actuatorI 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 actuatorI tried disabling all actuator endpoints for production environment in application.yml configuration file: endpoints.enabled: false It works for …
java spring-boot spring-boot-actuatorI am trying to update datasource in Spring Boot when the DB property like DB name, password or hostname changes …
java spring spring-mvc spring-boot spring-boot-actuatorrecently I changed my spring boot properties to define a management port. In doing so, my unit tests started to …
java spring-boot junit spring-boot-actuatorI would like to know if exist some way to disable the monitoring of a Specific DataSource by SpringBoot Actuator. …
spring spring-boot spring-boot-actuatorWe want to enable Cors for all GET requests to the /health endpoint provided by spring boot actuator. We tried …
spring spring-boot cors spring-boot-actuatorI have updated a Spring Boot application from 1.4.x to 1.5.1 and the Spring Actuator endpoints return a different MIME type …
spring-boot spring-boot-actuatorI followed the documentation here (https://docs.spring.io/spring-boot/docs/2.0.0.RC1/reference/htmlsingle/#production-ready-endpoints-enabling-endpoints) and made sure application.yml …
spring spring-boot spring-boot-actuator spring-webflux