将弹簧启动执行器的运行状况终点更改为自定义终点

时间:2018-10-04 20:34:38

标签: java spring-boot spring-boot-actuator

是否可以将弹簧保护套执行器的健康终点更改为自定义终点?如下所示。

http://localhost:8080/actuator/health

http://localhost:8080/myapp/apphealth

仅希望更改名称,而不希望执行器/运行状况的响应。可能吗?

1 个答案:

答案 0 :(得分:4)

,有可能。

文档的this部分中定义了如何自定义执行器端点的路径。

文档指出:

  

如果要将端点映射到其他路径,可以使用   management.endpoints.web.path-mapping属性。

     

以下示例将/ actuator / health重映射到/ healthcheck:

     

application.properties。

     

management.endpoints.web.base-path = /

     

management.endpoints.web.path-mapping.health = healthcheck

因此,您需要的是:

-- application.properties --
management.endpoints.web.base-path=/myapp
management.endpoints.web.path-mapping.health=apphealth