Usage Example

By default, the Management function modules on the edge management system web page include Network Configuration, Time Configuration, NMS Registration, Storage Configuration, Alarm Information, Log Collection, Firmware Update, Reset Control, and System Information, as shown in Figure 1. The Setting function module includes only Security Policy, as shown in Figure 2.

Figure 1 Management function modules
Figure 2 Setting function module

After configuring routesConfig.json to load custom components, Time Configuration, Alarm Information, and Reset Control are not displayed on the WebUI, as shown in Figure 3.

Figure 3 Page displayed after configuration
The following is a configuration example of routesConfig.json:
{
    "manager": {
        "network": true,
        "time": false,                         # Hide the time configuration module.
        "registration": true,
        "disk": true,
        "alarm": false,                       # Hide the Alarm Information module.
        "journal": true,
        "update": true,
        "reload": false,                      # Hide the Reset Control module.
        "information": true,
        "extendModule": true
    },
    "setting": {
        "safety": true
    }
}