Small status page for Spring Actuator. Spring Actuator Web UI used a combination of /actuator/info
and /actuator/health
to display the status.
Git clone, then copy all resources to src/main/resources/static
After that, change your Spring Actuator config to this:
management.endpoints.web.cors.allowed-origins=*
management.endpoints.web.cors.allowed-methods=GET
You might want to restrict the allowed-origins
to allow only your domain name.
If you want to change the icon in the page, add the following line to your application.properties
:
info.app.icon=bicycle icon
For a list of supported icons, see the list here.
See the status page in action.