如何更改 spring boot admin 使用的默认运行状况端点
How to change the default health endpoint used by spring boot admin
我想通过指标的实施为我的服务提供一个新的按需运行状况检查端点。问题是默认情况下会调用按需调用 `/actuator/health`,所以我将默认健康端点拆分为两个健康组 `/actuator/health/default & /actuator/health/on- demand` 因为我没有找到任何方法直接从 `/actuator/health` 中删除点播。
现在出现了一个新问题,默认情况下,spring boot admin 会点击/actuator/health 来获取相应的信息,我想知道是否可以让他点击/actuator/health/default相反?
顺便说一句,我只有管理客户端,没有任何恢复服务
哈哈,这个配置就是答案:spring.boot.admin.client.instance.health-url
我想通过指标的实施为我的服务提供一个新的按需运行状况检查端点。问题是默认情况下会调用按需调用 `/actuator/health`,所以我将默认健康端点拆分为两个健康组 `/actuator/health/default & /actuator/health/on- demand` 因为我没有找到任何方法直接从 `/actuator/health` 中删除点播。
现在出现了一个新问题,默认情况下,spring boot admin 会点击/actuator/health 来获取相应的信息,我想知道是否可以让他点击/actuator/health/default相反?
顺便说一句,我只有管理客户端,没有任何恢复服务
哈哈,这个配置就是答案:spring.boot.admin.client.instance.health-url