Skip to content

Commit

Permalink
Disable JMS health indicator
Browse files Browse the repository at this point in the history
Signed-off-by: Gerben Kroes <[email protected]>
  • Loading branch information
kroesctrl committed Mar 11, 2024
1 parent 20af2db commit 330e8a0
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,4 @@ management.security.enabled=false
management.endpoint.beans.cache.time-to-live=10s
management.endpoints.web.cors.allowed-origins=*
management.endpoints.web.cors.allowed-methods=GET
management.health.jms.enabled=false
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,20 @@ spring.jpa.hibernate.naming.physical-strategy=org.opensmartgridplatform.shared.a
spring.jpa.hibernate.naming.implicit-strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy
spring.jpa.open-in-view=false

# Spring Actuator setting to show health check details
#management.endpoint.health.show-details=always
##############################################################
# Properties for Spring Boot Actuator #
##############################################################
management.endpoints.enabled-by-default=false
management.endpoints.jmx.exposure.exclude=*
management.endpoint.health.enabled=true
management.endpoint.prometheus.enabled=true
management.endpoint.health.show-details=always
management.endpoints.web.exposure.include=health,prometheus
management.security.enabled=false
management.endpoint.beans.cache.time-to-live=10s
management.endpoints.web.cors.allowed-origins=*
management.endpoints.web.cors.allowed-methods=GET
management.health.jms.enabled=false

# Flyway Configuration
spring.flyway.table=schema_version
Expand Down

0 comments on commit 330e8a0

Please sign in to comment.