You are viewing the documentation for Blueriq 17. Documentation for other versions is available in our documentation directory.
Introduction
Actuator endpoints provide real-time insights and management capabilities. These endpoints expose information about your application's health, metrics, and various operational aspects. This documentation will guide you on how to call these endpoints and optionally change the credentials.
How to call endpoints
Currently, only the /health
endpoint is enabled.
The actuator endpoint can be called using HTTP protocol:
Make sure to replace "{url}" with application domain.
GET http://{url}/actuator/health Authorization: Basic blueriq welcome
Change the credentials
By default, the credentials are used as outlined above. When you want to change this, add the following configuration to the blueriq-dcm-lists.yml
configuration file. Note that only users with role ACTUATOR can access endpoints.
spring: security: user: name: <username> password: '{noop}<password>' roles: - ACTUATOR