Searching the Help
To search for information in the Help, type a word or phrase in the Search box. When you enter a group of words, OR is inferred. You can use Boolean operators to refine your search.
Results returned are case insensitive. However, results ranking takes case into account and assigns higher scores to case matches. Therefore, a search for "cats" followed by a search for "Cats" would return the same number of Help topics, but the order in which the topics are listed would be different.
Search for | Example | Results |
---|---|---|
A single word | cat
|
Topics that contain the word "cat". You will also find its grammatical variations, such as "cats". |
A phrase. You can specify that the search results contain a specific phrase. |
"cat food" (quotation marks) |
Topics that contain the literal phrase "cat food" and all its grammatical variations. Without the quotation marks, the query is equivalent to specifying an OR operator, which finds topics with one of the individual words instead of the phrase. |
Search for | Operator | Example |
---|---|---|
Two or more words in the same topic |
|
|
Either word in a topic |
|
|
Topics that do not contain a specific word or phrase |
|
|
Topics that contain one string and do not contain another | ^ (caret) |
cat ^ mouse
|
A combination of search types | ( ) parentheses |
|
- Configure Custom Correlations
- Configure a Correlation Rule
- Configure a Parent Incident Filter for a Correlation Rule
- Configure a Child Incident Filter for a Correlation Rule
- Configure a Correlation Filter
- Correlation Rule Example
- Configure a Causal Rule
- Configure a Child Incident for a Causal Rule
- Configure a Child Incident Filter for a Causal Rule
- Configure a Source Object Filter for a Causal Rule
- Configure a Source Node Filter for a Causal Rule
- Causal Rule Example
Correlation Rule Example
Tip Use these steps as a guideline for creating your own Correlation Rules.
The NNMi Custom Correlation feature enables you to correlate groups of incidents under a Parent Incident. This feature is useful when you want to define a relationship between a number of incidents potentially from different network objects that form a logical set to identify a problem. The set of correlations is considered complete if all of the incidents arrive within a specified time window. You can correlate incidents under an existing Incident Configuration (Correlation Rule) or create a new Incident Configuration (Causal Rule).
This example uses an existing Incident Configuration as the Parent Incident. See Causal Rule Example for an example that generates a new Incident Configuration as the Parent Incident.
-
Navigate to the Custom Correlation Configuration form:
- From the workspace navigation pane, select the Configuration workspace.
- Expand the Incidents folder.
- Select Custom Correlation Configuration.
- Navigate to the Correlation Rules tab.
- From the Correlation Rules table toolbar, click the New icon.
- In the Name attribute, enter a unique name that will help you to identify the Correlation Rule. In this example, the Correlation Rule Name is Subinterface.
- In the Author attribute, enter a name that identifies the person who is creating the Correlation Rule. In this example, Network Node Manager is the Author name to identify this Correlation Rule as one that NNMi provides.
- Make sure Enabled is checked to indicate the NNMi Causal Engine should use this Correlation Rule when evaluating incidents.
-
To use an existing Parent Incident, do the following:
- In the Parent Incident Lookup Field, select Quick Find to select from the list of existing incident configurations.
-
In the Subinterface Correlation Rule, the InterfaceDown incident configuration was selected as the Parent Incident.
-
Select the Incident Configuration that must match an incoming incident and that should be correlated as the Child Incident for the Custom Correlation.
In the Subinterface Correlation Rule, the InterfaceDown incident configuration was also selected as the Child Incident.
- In the Correlation Window Duration attribute, enter the time limit (in days, hours, minutes, and seconds) that must be reached before the incoming incident are correlated. The Subinterface Correlation Rule specifies a Correlation Window Duration of 6 minutes.
-
Use the Description attribute to provide additional information that you would like to store about the current incident configuration. This description applies only to the configuration entry.
The Subinterface Correlation Rule includes the following description: Correlates sub-interfaces down incidents under the main interface down.
- In the Correlation Rule form, navigate to the Parent Incident Filter tab.
-
The following Parent Incident Filter specifies that the Correlation Rule applies only to Cisco devices:
${devVendorInterface} = Cisco
-
The following Parent Incident Filter specifies that the
ifDesc
value must contain the stringSerial
followed by one or more digits and then a forward slash, followed by zero or more digits:${ifDesc} like Serial\d+/*\d*
-
As shown in the following Filter String, the Parent Incident Filters use the Boolean operator AND so that both criteria must be met for the Incident to be selected as a Parent:
{${devVendorInterface} = Cisco AND ${ifDesc} like Serial\d+/*\d*)
To create this Parent Incident Filter, in the Filter Editor:
- Click And.
- In the Attribute field, enter
${devVendorInterface}
. - In the Operator field, select = from the drop-down menu.
- In the Expression field, enter Cisco.
- Click Append.
- In the Attribute field, enter
${ifDesc}
. - In the Operator field, select
like
from the drop-down menu. - In the Expression field, enter
Serial\d+/*\d*
. - Click Add.
- In the Correlation Rule form, navigate to the Child Incident Filter tab.
-
The following Child Incident Filter specifies that the Correlation Rule applies only to Cisco devices:
${devVendorInterface} = Cisco
-
The following Child Incident Filter specifies that the
ifDesc
value must contain the following sequence of values:The string
Serial
followed by one or more digits, then a forward slash, followed by zero or more digits, and then a period followed by one or more digits:${ifDesc} like Serial\d+/*\d*
-
As shown in the following Filter String, the Child Incident Filters use the Boolean operator AND so that both criteria must be met for the Incident to be selected as a Child:
{${devVendorInterface} = Cisco AND ${ifDesc} like Serial\d+/*\d*)
To create this Parent Incident Filter, in the Filter Editor:
- Click And.
- In the Attribute field, enter
${devVendorInterface}
. - In the Operator field, select = from the drop-down menu.
- In the Expression field, enter Cisco.
- Click Append.
- In the Attribute field, enter
${ifDesc}
. - In the Operator field, select
like
from the drop-down menu. - In the Expression field, enter
Serial\d+/*\d*
. - Click Append.
Note When specifying a Correlation Filter, you must specify whether the attribute is from a Child Incident or Parent Incident using the following syntax: ${child.<attribute_name>}
or ${parent.<attribute_name>}
.
-
In the Correlation Rule form, navigate to the Correlation Filter tab.
-
To ensure that the Interface Down incidents are generated for the same node, the Subinterface Correlation Rules uses
hostedOn
as the attribute for both the Child and Parent Incidents as shown in the following example filter:${child.hostedOn}
= ${parent.hostedOn}
To ensure that the Interfaces are subinterfaces for the main interface, the filter also matches the
ifDesc
values:${child.ifDesc} like ${parent.ifDesc}.*
As shown in the following Filter String, the Correlation Filter uses the Boolean operator AND so that both criteria must be met for the Incidents to be correlated:
${child.hostedOn} = ${parent.hostedOn} AND ${child.ifDesc} like ${parent.ifDesc}.*
To create the Correlation Rule filter:
- Click And.
- In the Attribute field, enter
${child.hostedOn}
. - In the Operator field, select = from the drop-down menu.
- In the Expression field, enter ${parent.hostedOn}.
- Click Append.
- In the Attribute field, enter
${child.ifDesc}
. - In the Operator field, select
like
from the drop-down menu. - In the Expression field, enter
${parent.ifDesc}.*
. - Click Append.
- Click Save and Close to save your changes and return to the previous form.
We welcome your comments!
To open the configured email client on this computer, open an email window.
Otherwise, copy the information below to a web mail client, and send this email to network-management-doc-feedback@hpe.com.
Help Topic ID:
Product:
Topic Title:
Feedback: