This visual execution trace shows how Spring Boot actuator endpoints are secured. The app starts with actuator endpoints enabled. When a request arrives, the security configuration checks if the user is authenticated and has the ACTUATOR role. If not authenticated, the request is denied with 401 Unauthorized. If authenticated but without the ACTUATOR role, access is denied with 403 Forbidden. Only endpoints listed in the exposure property are accessible. The execution table traces requests to various endpoints with different user roles and shows the resulting access decisions and responses. The variable tracker shows how authentication status, user role, and access granted status change step by step. Key moments clarify common confusions about roles and endpoint exposure. The quiz tests understanding of these execution steps. The snapshot summarizes the main points for quick reference.