我正在尝试监视具有执行器支持的Spring Boot应用程序。并能够设置SpringBootAdmin服务器和客户端。 我通过在application.properties文件中添加以下内容在客户端应用程序中启用了关闭端点
management.endpoint.shutdown.enabled = true management.endpoints.web.exposure.include =运行状况,指标,记录器,httptrace,关闭
现在我可以通过邮递员客户端访问执行器关闭api,并且功能正常。
有什么方法可以关闭功能/选项卡吗?是Spring Boot管理员UI吗?
答案 0 :(得分:0)
遗憾的是,即使在 2 年后,这仍然不受支持。您可以在 management.endpoints.web.exposure.include 中将其列为:
management.endpoints.web.exposure.include=shutdown
它会出现,但没有选项可以操作它。