Operation Manager 0.27.0 (full version)
 
Table of Contents
Start
Table of Contents
1. Conventions
2. General information about David system
3. Terminology
4. Installation
5. Operation Manager requirements
6. Installation
7. General information
8. Graphic Notifications Server (dgnsd)
9. Sound Client (sndc)
10. Access to the SNMP Trap Interface (damsnmpti)
11. SNMP Trap Analyser (damsnmptaud)
12. Access to the SNMP Data Interface (damsnmpdi)
13. SNMP Data Analyser (damsnmpdaud)
14. Cases Database Unit (damadbud)
15. Cases Service Unit (damcsud)
16. Buttons the most often used in Web applications
17. Recorded Operation Browser
18. Pending Operation Browser
19. Graphic Notifications Presenter (xdgnp)
 
 

14.4. Configuration file format

The configuration file consists of objects that type is specified by a keyword used inside their names and their specification is limited by braces {}. Currently only one type of objects is permitted and its keyword is association. A keyword that describes type of object must be a single word in all line. The same rule is applicable to braces that begin and end an object definition. An generic object definition is shown below:

association

{

...

}

Fields occurred between braces are exactly specified like an order of them. Each field in a object definition takes whole line and has got below form:

keyword=

A first field is var that must be followed by a string describing name of variable which may be used in the further part of the definition. A field var may occur zero or more times and in that way it may define many variables. Two last fields of the definition are: string1 and string2. They describe identifiers of messages that is going to be associated each other. An example definition may have following form:

association

{

var=$1

string1=link $1 up

string2=link $1 down

}

and according to that following two messages:

information: link serial1/1 up in router

information: link serial1/1 down in router

match each other but these ones:

information: link serial1/2 up in router

information: link serial1/1 down in router

don't match each other.