In my Spring Boot App (2.0.0.M7) application.properties I set
management.endpoint.metrics.enabled=true
However, when i hit
What worked for me is the following (in YAML format) working with spring boot 2 release:
management: endpoints: web: exposure: include: info, health, metrics metrics: export: atlas: enabled: false
also specific documentation can be found here