
The installation of summary and object nodes is simple and requires only three parameters:
There are some restrictions concerning the input parameters:
In the Bank example , a valid path is "Root/Applications", a valid name is "European VIP Clients" (there is no such summary described in the monitor-configuration.xml), and a valid configuration group is "BankVIPClientsList" (this configuration group is described in the monitor-configuration.xml, i.e. this is a valid configuration group).
The installation of a summary node can be done with the following code:
String cfgGroup = "BankVIPClientsList"; String path = "Root / Applications"; String name = "European VIP Clients"; monitorContext.installSummaryNode(path, name, cfgGroup);
The installation of an object node is similar:
String cfgGroup = "BankVIPClient"; String path = "Root/Applications"; String name = "VIP Clients - France"; monitorContext. installObjectNode(path, name, cfgGroup);