Search code examples
spring-bootspring-boot-actuatorspring-boot-admin

Where is the data from /info endpoint stored in the spring boot admin?


I want to send username and password of the spring boot applications to the spring boot admin in the /info endpoint. Now this data could be successfully sent to the spring boot admin and was displayed in the info column. Now I need to use this username/password data in the admin side. Question is whether the info data was stored in the admin side after the first automatic /info request, and how can I access this data? Because I don't want to request the info endpoint from the client side each time I use the data. spring boot admin info data


Solution

  • The data from /info isn't stored on the admin server.