I'm fairly new to Spring. I am trying to integrate custom information from a service into Spring Boot Admin server dashboard.
Out of the box, the Spring boot admin server dashboard for a microservice contains tabs for Details
, Metrics
..etc. I need to add one or more custom tabs. I have one of my services serve a dummy endpoint (which would in future serve the custom tab) which I created by following this article. This endpoint extends the actuator.Endpoint
class.
I have looked into Spring Boot Admin' Github, at both the Server and the UI but was unable to find a way to integrate a custom endpoint.
Any kind of help is appreciated. Thanks
Currently there is no documentation on that. but it is possbible. Look at the spring-boot-admin-server-ui-activiti module. It adds a tab for a new endpoint.