I\'ve recently upgraded a project from Spring Boot 1.5.1 to 2.0.0 and our custom actuator endpoint is not getting registered. I\'ve tried the following endpoint migration gu
You need to expose your custom endpoint by adding this to your application.yml file.
application.yml
management: endpoints: web: expose: 'customendpoint,info,health' exclude: env
If you want to expose all your endpoints then change it as expose: '*'
expose: '*'