@iconsolutions/ipf-operational-dashboard

This module is to give any Angular@19 application the relevant routes, services and components to create your own IPF Operational Dashboard. Once installed you will see all IPF pre-defined views available in your dashboard.

Getting Started

To begin using the library simply run npm i @iconsolutions/ipf-operational-dashboard in whatever angular app you need to use the library in.

You will need to add the following to the app.config.ts file:

export const appConfig: ApplicationConfig = {
    providers: [
        importProvidersFrom(
            ...
            StoreModule.forRoot(),
            StoreRouterConnectingModule.forRoot(),
            EffectsModule.forRoot(),
            TranslocoRootModule,
            CommonModule,
            IpfOperationalDashboardModule
        ),
    ]
}

Once this module is installed all the relevant IPF Operational Dashboard routes should now render in your application.

Customising the Operational Dashboard Audit Feature

To customise the Audit feature see the relevant ops-gui-module docs.

Customising the Cluster Health Operational Dashboard Module

To customise the Cluster Health Operational Dashboard module see the relevant ops-gui-module docs.