You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Do we like it or not the REST API is a de-facto standard for API development and mostly a huge number of apps have it.
As soon as the app went go-live the API monitoring will become one of the first questions and loading transparency, tps, etc.
@RestControllerpublicclassMyTypicalRestController {
@GetMapping("/foo") //violationpublicFoogetFoo() {
//...
}
@Timed@GetMapping("/bar") // ok, because annotation @Timed is presentpublicFoogetBar() {
//...
}
}
The current rule is oriented for apps that are using micrometer.io framework.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Summary
Why?
Do we like it or not the REST API is a de-facto standard for API development and mostly a huge number of apps have it.
As soon as the app went go-live the API monitoring will become one of the first questions and loading transparency, tps, etc.
The current rule is oriented for apps that are using micrometer.io framework.
Beta Was this translation helpful? Give feedback.
All reactions