Configuration File Description
You can modify the routesConfig.json configuration file to control the dynamic display of management and configuration function modules on the edge management system web page. For example, you can hide the alarm module so it will not be displayed on the web page.
Configuration File
{project_dir}/src/app/set_customized_web_nav
├──build_customized_web_nav.sh # Configuration script
└──routes_config_checker.py # Code for verifying configuration file
├──routesConfig.json # Configuration file
{
"manager": {
"network": true,
"time": true,
"registration": true,
"disk": true,
"alarm": true,
"journal": true,
"update": true,
"reload": true,
"information": true,
"extendModule": true
},
"setting": {
"safety": true
}
}
Parameter |
Description |
|---|---|
manager.network |
Meaning: whether to show the Network Configuration tab on the navigation bar of the web page Type: bool Value:
|
manager.time |
Meaning: whether to show the Time Configuration tab on the navigation bar of the web page Type: bool Value:
|
manager.registration |
Meaning: whether to show the NMS registration tab on the navigation bar of the web page Type: bool Value:
|
manager.disk |
Meaning: whether to show the storage configuration tab on the navigation bar of the web page Type: bool Value:
|
manager.alarm |
Meaning: whether to show the alarm information tab on the navigation bar of the web page Type: bool Value:
|
manager.journal |
Meaning: whether to show the log collection tab on the navigation bar of the web page Type: bool Value:
|
manager.update |
Meaning: whether to show the firmware upgrade tab on the navigation bar of the web page Type: bool Value:
|
manager.reload |
Meaning: whether to show the reset control tab page on the navigation bar of the web page Type: bool Value:
|
manager.information |
Meaning: whether to show the system information tab on the navigation bar of the web page Type: bool Value:
|
manager.extendModule |
Meaning: whether to show the extension module tab on the navigation bar of the web page Type: bool Value:
|
setting.safety |
Meaning: whether to show the Security Policy tab on the navigation bar of the web page Type: bool Value:
|