有没有办法将请求参数传递给 /health 端点?

Is there a way to pass the request parameter to the /health endpoint?

我正在编写一个客户健康指标来检查与另一个应用程序的连接。但是要检查这一点,我需要在 /health 端点的请求 URL 中使用一些请求参数。(例如,我想要的 URL 是“/health?countryCode=IN”) 有没有办法做到这一点? 谢谢。

获取 HttpServletRequest 注入的对象,如:

public class CustomHealthIndicator{
    
    @Autowired
    HttpServletRequest request;

}

并获取参数:

request.getParameter("countryCode")