Bird
0
0

What does the Spring Boot Actuator endpoint /info typically display?

easy📝 Conceptual Q2 of 15
Spring Boot - Actuator
What does the Spring Boot Actuator endpoint /info typically display?
ACurrent memory usage
BList of all HTTP requests
CApplication build and version details
DActive database connections
Step-by-Step Solution
Solution:
  1. Step 1: Identify the purpose of the /info endpoint

    The /info endpoint is used to show static information about the application, such as build version, description, or custom info.
  2. Step 2: Eliminate other options

    Memory usage is shown by /metrics, HTTP requests are not listed by /info, and database connections are not part of /info.
  3. Final Answer:

    Application build and version details -> Option C
  4. Quick Check:

    /info shows app details = Application build and version details [OK]
Quick Trick: Use /info for app version and build info [OK]
Common Mistakes:
  • Mixing /info with /metrics
  • Expecting dynamic data in /info
  • Confusing /info with request logs

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Spring Boot Quizzes