I am looking to log all of my Spring-Boot project's request. My pointcuts work fine for my programming, and I can get the sub paths, but not the base actuator path.
com.example.demo...(..) - This works for my programming
org.springframework.boot.actuate...(..) - This works for paths like http://localhost:8080/actuator/info or http://localhost:8080/actuator/health. This works
None of my pointcuts work for just "http://localhost:8080/actuator" with no other path. I have tried looking through the org.springframework.boot.actuate paths and through the actuator jar to see if I missed a path, but I cannot find anything. I've looked through org.springframework.boot.actuate.autoconfigure, but that doesn't seem to be right.
I just need to capture it and log the request, but I cannot find http://localhost:8080/actuator
Thanks