...
/Reading Operation Data: Non-persistent
Reading Operation Data: Non-persistent
Learn how to trace HTTP calls with /actuator/httptrace.
We'll cover the following...
Tracing HTTP calls with /actuator/httptrace
Spring Boot Actuator provides a convenient way to see who’s making calls to our application. Along with that comes a whole host of questions.
-
What types of clients are most popular? Mobile? Or a certain browser?
-
Are people making requests in certain languages? Do we need internationalization?
-
Which endpoints are being hit the most? From where?
This is the type of data analysis that can help us tailor our site to match customer needs, and to switch it on in a snap!
Spring Boot provides the HttpTraceRepository
interface. Any ...