nnmincidentcfgload.ovpl — load and validate formatted incident configuration files
nnmincidentcfgload.ovpl
{
-load filename
[-timeout timeout
]
[-memory memory
]
[-u <user name>
-p <password>
]
[-jdniHost <host name>
-jdniPort <port>
]
} {
-validate filename
[-timeout timeout
]
[-memory memory
]
[-u <user name>
-p <password>
]
[-jdniHost <host name>
-jdniPort <port>
]
} {
-formats sourceFilename
-formatd destinationFilename
[-u <user name>
-p <password>
]
[-jdniHost <host name>
-jdniPort <port>
]
} {
-expression expression
}
The nnmincidentcfgload.ovpl
is used to load
and validate incident configuration files. These configuration files must conform
to the required tag
format described in nnmincidentcfg.format
for each
configuration type.
Valid configuration types include the following:
*MgmtEventConfig
*PairwiseConfig
*SnmpTrapConfig
*SyslogMessageConfig
Incident configurations must first have been created using the NNMi console or be loaded into the database using the
nnmincidentcfg.ovpl
command.
Before using the nnmincidentcfgload.ovpl
command, do one of the following:
*Use thennmincidentcfgdump.ovpl
command to create a formatted file. Edit the incident configurations using the required format described innnmincidentcfg.format
. *Use an editor to create the formatted file with all required tags and modifications using the format requirements described innnmincidentcfg.format
.
When using the nnmincidentcfgload.ovpl
command, note the following:
*To avoid errors, if you need to edit complex incident configurations, use thennmincidentcfg.ovpl
command to create the formatted file rather than using a text editor. *The content of the formatted file replaces the configurations that are stored in the NNMi database. *Thennmincidentcfgload.ovpl
also re-formats the incident configuration file by inserting white space where needed to clarify the format hierarchy. This re-formatted file does not contain any original comments.
nnmincidentcfgload.ovpl
supports the following options:
-load <filename
>
Loads the formatted incident configuration file you specify into the NNMi database. Invalid file formats are not loaded into the NNMi database. NNMi reports each validation error, including the line number and error.
-validate <filename
>
Displays the line number and validation error for all errors encountered in the formatted incident configuration file you specify. It does not load the incident configurations into the NNMi database.
-formats <sourceFilename
>
Formats the file you specify and writes the file to the filename specified using -formatd <
.
destinationFilename
>
-formatd <destinationFilename
>
Specifies the filename that will contain the formatted version of -formats <
.
sourceFilename
>
-expression <expression
>
Validates the specified expression.
-timeout <timeout
>
Specifies the transaction time out in seconds that NNMi should use for the nnmincidentdump.ovpl
command.
-memory <memory
>
Specifies the maximum heap size in Megabytes (MB). The minimum <memory
> value is 512 MB. The default <memory
> value is 1536 MB.
-u <username
>
Supply the NNMi administrator password to run the script. Required unless a nnm.properties(4) file exists.
-p <password
>
Supply the NNMi administrator password to run the script. Required unless a nnm.properties(4) file exists.
-jndiHost <host name
>
The server JNDI host. The default value is localhost
.
-jndiPort <port
>
The server JNDI port. The default value is 1099
.
Load an incident configuration file:
nnmincidentcfgload.ovpl -load dumped-config.tag
Validate an incident configuration file:
nnmincidentcfgload.ovpl -validate modified-config.tag
Reformat an incident configuration file:
nnmincidentcfgload.ovpl -formats custom.tag -formatd formatted-output.tag
Validate an expression string:
nnmincidentcfgload.ovpl -expression "ciaName like \"whatTimeIsIt\""
The following example configuraton file contains all of the required tags for an incident configuration of type SnmpTrapConfig
:
*ConfigurationType=SnmpTrapConfig *Name MinimalistTrapConfig *Oid .1.3.4.5.6 -Author -Key com.customer.author -Category -Key com.hp.nms.incident.category.Fault -Family -Key com.hp.nms.incident.family.Node -MessageFormat Custom message format -Severity MINOR
The following example adds an action to the SNMP Trap Incident configuration:
*ConfigurationType=SnmpTrapConfig *Name MinimalistTrapConfig *Oid .1.3.4.5.6 -Author -Key com.customer.author -Category -Key com.hp.nms.incident.category.Fault -ActionConfiguration -Actions -Action -Command echo "hello" > /tmp/hello.test -CommandType SCRIPT_OR_EXECUTABLE -LifecycleState InProgress -Family -Key com.hp.nms.incident.family.Node -MessageFormat Custom message format -Severity MINOR