编程语言
首页 > 编程语言> > java – 禁用spring boot actuator“health-component”和“health-component-instance”

java – 禁用spring boot actuator“health-component”和“health-component-instance”

作者:互联网

嗨我在sprinb-boot 2中使用执行器,具有以下属性

management.endpoints.enabled-by-default=false
management.endpoint.health.enabled=true

我的目标是禁用除健康之外的所有端点.通过这种配置,我禁用了除健康之外的所有内容,并且现在获得以下端点“health”,“health-component”,“health-component-instance”.是否可以禁用“health-component”,“health-component-instance”?如何 ?

解决方法:

健康组件端点于Spring Boot 2.2.0.M2引入,作为现有HealthEndpoint的扩展.

没有配置选项可以仅禁用/ health-component和/ health-component-instance,或者禁用整个运行状况端点.

标签:spring-boot-actuator,java,spring,spring-boot
来源: https://codeday.me/bug/20190827/1744607.html