Metrics Collection for Spring Boot REST APIs
问题 I am trying to collect metrics for my Spring Boot(2.1.0.RELEASE) Application. Specifically, I want to know No of times individual REST endpoints were called. Time taken by each of those endpoints to process the request. Average rate at which my requests are being processed/errored. The actuator /actuator/metrics endpoint gives lot of info but I am not sure if any of those are useful for my case. Also, can someone tell if @Timed(or any other out-of-the-box annotation) can be used for achieving