OpenNMS integrates Drools for Correlation

http://www.opennms.com/twio-drooling-all-over-your-network/

“Meet the New Drools, Same as the Old Drools

For a long time now, OpenNMS has had a little-known feature for doing event correlation, using the open-source Drools business logic engine. It is little-known because we have gone out of our way not to tell people about it — somewhere in the transition from OpenNMS 1.2 to 1.6, it broke because of a complicated chain of dependencies. Thanks to the work of the enigmatic Seth, Jetty and Drools are once again in agreement on their dependencies, and I’ve confirmed that it’s working as of this morning’s code (which should be available in tomorrow’s nightly snapshots).

The correlation engine lets you do complex workflows and event processing (including detection of flapping). We have a couple of examples of what can be done in the $OPENNMS_HOME/etc/examples/ directory. If you’d like to try them out, just copy the following files into your etc directory:

correlation-engine.xml
Configures the correlation engine daemon. Since the OpenNMS correlation engine is a generic API that could potentially be implemented using multiple business logic implementations, this configuration tells OpenNMS which engines are available. Currently, the only implementation is the Drools engine.
drools-engine.xml
Configures the Drools correlation engine. This file contains the Drools-specific configuration for event correlation. In it you define tags which refer to the code, events, and other variables that are relevant.
LocationMonitorRules.drl
An example Drools correlation rule which can detect flapping outages from remote pollers.
NodeParentRules.drl
An example Drools correlation rule which can do root cause analysis on node outages based on a node parent outage.
nodeParentRules-context.xml
A spring configuration file to provide extra resources to the “node parent” Drools rule.

Then, edit your $OPENNMS_HOME/etc/service-configuration.xml and uncomment the service named “OpenNMS:Name=Correlator” and restart OpenNMS.

Other than that, using Drools is not very well documented yet, but if you are a Java developer, you should be able to work out what’s going on looking at the rules and configuration files.”

Author

Comments are closed.