No data for Info
Some applications may not return any info contributors, resulting in an empty page.
This can be caused by a couple of reasons:
The
info
endpoint is not exposed, this can be solved by exposinginfo
or addinginfo
to an existing exposure using themanagement.endpoints.web.exposure.include
property.Example:
management.endpoints.web.exposure.include=info
No info contributors exist. Some default info contributors can be enabled:
JavaInfoContributor - enabled using
management.info.java.enabled=true
OsInfoContributor - enabled using
management.info.os.enabled=true
Additionally, you may also generate the build information for your application, which will enable the BuildInfoContributor and pass the git information to your application, which will enable the GitInfoContributor. Instructions on how to do that can be found here
Last updated