当前位置: 首页 > 知识库问答 >
问题:

禁用Spring引导执行器“health-component”和“health-component-instance”

景辰钊
2023-03-14

嗨,我正在使用sprinb-boot2中的致动器,具有以下属性

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

我的目标是禁用除健康之外的所有endpoint。通过此配置,我禁用了除health以外的所有endpoint,现在获取以下endpoint“health”、“health-component”、“health-component-instance”。是否可以同时禁用“health-component”、“health-component-instance”?怎么做的?

共有1个答案

充鑫鹏
2023-03-14

健康组件endpoint是在Spring Boot 2.2.0.M2中引入的,作为对现有healthendpoint的扩展。

没有仅禁用/health-component/health-component-instance的配置选项,整个healthendpoint都是禁用的。

 类似资料:
  • 我添加了执行器依赖 按照教程中的建议 但是当我点击时,它不会给出预期的结果。上面写着 Spring Boot版本为1.5.4。和Java1.8需要做哪些附加设置?

  • 我调整了我的Spring启动执行器活动/准备日志在application.properties文件 但是它在KuberNate环境中记录健康检查日志... 有没有办法关掉健康检查日志... 感谢你的回应...

  • 默认情况下,在spring boot中,如果我们点击/actuator/health url,我们将得到JSON格式的health。但是我在应用程序中使用jackson-dataformat-xml作为我的其他API,这使得健康url将响应格式更改为XML。我们是否可以告诉spring用JSON来响应health url?我不想添加我自己的健康URL。 在Spring Boot Actuator/

  • 我在我的应用程序中使用了Spring-Boot1.3.1和Spring-Boot-Actutor。我使用作为中的父级。 为了禁用安全性,我在中添加了2个条目。 它仍然没有禁用基本的安全性。当我在本地Tomcat中启动应用程序时,我看到日志文件中的默认密码。

  • Health Monitor Laravel Server & App Health Monitor and Notifier This package checks if the application resources are running as they should and creates a service status panel. It has the following mai

  • 我尝试在配置文件中禁用生产环境的所有执行器endpoint: 它适用于除/info以外的所有endpoint。如何关闭给定环境的所有endpoint? 更新: 我正在做的项目也是Eureka的客户。在Spring Cloud Netflix的文档Status Page and Health Indicator一节(http://Cloud.Spring.io/spring-cloud-netfli