我需要在spring启动应用程序中加入一些指标。所以我用了下面的metricsendpoint。但我无法获取指标。invoke()方法未出现。
spring boot版本:2.2.6.0
@Controller
public class DashboardControllerImpl implements IDashboardController {
@Autowired
private MetricsEndpoint metricsEndpoint;
@Override
public ResponseEntity listDiskUsage() {
metricsEndpoint.invoke(); // invoke does not appear
// code block
}
}
1条答案
按热度按时间unhi4e5o1#
我找到了这样的东西,解决了我的问题!