Documentation for a newer release is available.
View Latest
@iconsolutions/cluster-health
Introduction
The cluster health screen is a technical screen providing the information gathered from the health actuator endpoint.
It provides information on the nodes IP and health. It is useful to identify any members of a cluster or other IPF services.
| The status of the services will only appear here if they have been configured in the dashboard configuration. |
Getting Started
To begin using the library simply run npm i @iconsolutions/cluster-health in whatever angular app you need to use the library in.
You will need to add the following to the app routing module:
{
path: 'cluster-health',
loadChildren: () =>
import('@iconsolutions/cluster-health').then((m) => m.ClusterHealthModule)
}