Configuration of the Monitoring Console

As an administrator, you can change the configuration of the Monitoring Console.

In the Monitoring Console configuration files, you can modify advanced settings such as defining the number of alerts that can be retained by default, or the storage options. The values in the following sample files are the default values stored in the LogLogic LMI appliance. You can modify the values as required and then perform the steps described in Configuring Advanced Features.

Sample Configuration File for Monitoring Console Parameters

The following sample file includes the Monitoring Console settings:
{

  "configurations": [
    {
      "nodePath": "/unity/system/config/hawkconsolenodes/hawkconsolenode-0000000000",
      "data": {
        "services": {
          "rest": {
            "host": "0.0.0.0",
            "port": 9687
          }
        },
        "alerts": {
          "notificationRetentionCount": 100000,
          "lowRetentionCount": 100000,
          "mediumRetentionCount": 100000,
          "highRetentionCount": 100000
        },
        "domainConfig": {
          "defaultDomainName": "lmi_domain",
          "defaultClusterPort": 9688,
          "domainTransportConfigPath": "conf/DomainTransportConfigPath.yml",
          "repositoryPath": "conf/repository"
        },
        "storage": {
          "cache": "/loglogic/data/.hawkconsole/hcache",
          "type": "mysql",
          "host": "127.0.0.1",
          "port": 3306
        },
        "version": 1
      }
    }
  ]
}
Parameter Description Default value
Maximum number of alerts 100,000 alerts
"alerts": {
          "notificationRetentionCount": 100000,
          "lowRetentionCount": 100000,
          "mediumRetentionCount": 100000,
          "highRetentionCount": 100000
        }
Configuration of the appliance that hosts the Monitoring Console
"domainConfig": {
          "defaultDomainName": "lmi_domain",
          "defaultClusterPort": 9688,
          "domainTransportConfigPath": "conf/DomainTransportConfigPath.yml",
          "repositoryPath": "conf/repository"
        }
Storage medium of alerts MySQL database, its IP address, and port
"storage": {
          "type": "mysql",
          "host": "127.0.0.1",
          "port": 3306
        }