Page History
...
Add the following configuration properties to application.yml. This will add user with username "blueriq" and password "welcome" and assign him ROLE_ACTUATOR.
Code Block spring: security: user: name: blueriq password: '{noop}welcome' roles: - ACTUATOR
How to call endpoints
Info |
---|
Currently, only the /health endpoint is enabled. |
Actuator can be called using HTTP protocol:
Make sure to replace replace "{url}" with application domain.
Code Block |
---|
GET http://{url}/actuator/health Authorization: Basic blueriq welcome |
...
Overview
Content Tools