Each model may include multiple sets of business rules that comprise a machine-readable knowledge base that helps the system make decisions and perform complex calculations during autonomous functioning.

Rules are grouped into rule sets. All rule sets are fully independent from each other. Each set includes one or more rules that work in a certain order (see Rule Set Types). Each rule set may take certain parameters, and its processing always results in a single object (of any type, e.g., number, string, or date).

Using Rule Sets

To process a rule set from the model's own binding or any external system component, call a rule set context function. See the referring rule sets for more information.

Every rule set is executed separately, so you can call the same rule set with different parameters at the same time. In this case, they will work in parallel.

Rule Components

Each rule in a set consists of a target, an expression, and a condition. Each rule either returns the result of the whole rule set or defines a single environment variable that is valid until the end of rule set processing.

It's also possible to add comments to individual rules.

Rule Target

Target defines how to treat the outcome of this rule set. If the rule target is Final Rule Set Result, this rule stops rule set processing and returns a result of the whole rule set.

In other cases, target defines a name for an environment variable that will be defined once rule processing is over. This variable can be referred to in other rules' expressions and conditions.

Rule Targets can not overwrite the Standard Environment Variables. For example, a Rule Target named count, previous, time, or previousTime cannot be referenced in any other rule, because a Standard Environment Variable takes precedence.

Rule Expression

A rule expression is an Iotellect expression that returns a result of any type. This result is:

  • Returned as the result of the whole rule set if rule Target is Final Rule Set Result.

  • Stored as a rule set's internal environment variable rewriting value of this variable if was already defined by other rules. This environment variable will be valid during the current rule set processing cycle.

Rule expressions may refer to results of other rules from this set via {env/rule_target_variable_name} references.

Rule Condition

Rule Condition is an Iotellect expression that should result to a Boolean value. If this value is false, the rule processing will be skipped and other rules will be processed according to the rule set type.

Note that empty conditions or conditions that return NULL will have the True value.

Rule conditions may refer to results of other rules from this set via {env/rule_target_variable_name} references.

The rule condition is optional.

Rule Set Example

This example describes a simple sequential rule set that calculates CPU load of a network host regardless of the host type and operating system.

This rule set is used by a relative model that is attached to every network host and, thus, the default context of rule expression and condition is the context of a network device it's attached to.

Target

Expression

Condition

Comment

Final Rule Set Result

aggregate({.:hrProcessorTable}, '{env/previous} + {hrProcessorLoad}', 0) / records({.:hrProcessorTable})

hasVariable({.:}, 'hrProcessorTable')

Standard

Final Rule Set Result

aggregate({.:cpmCPUTotalTable}, '{env/previous} + {cpmCPUTotal5min}', 0) / records({.:cpmCPUTotalTable})

hasVariable({.:}, 'cpmCPUTotalTable')

Cisco

Final Rule Set Result

{utilities:statistics({.:}, "hpuxCpuLoad", null, "minute", "false")$average}

hasVariable({.:}, 'computerSystemIdleCPU') && hasVariable({.:}, 'computerSystemSysCPU') &&hasVariable({.:}, 'computerSystemUserCPU') && hasVariable({.:}, 'computerSystemNiceCPU')

HP/UX

Final Rule Set Result

{.:ssCpuSystem$ssCpuSystem} + {.:ssCpuUser$ssCpuUser}

hasVariable({.:}, 'ssCpuSystem') && hasVariable({.:}, 'ssCpuUser')

Solaris

Final Rule Set Result

{.:agentCPUutilizationIn1min$agentCPUutilizationIn1min}

hasVariable({.:}, 'agentCPUutilizationIn1min') && {.:agentCPUutilizationIn1min$agentCPUutilizationIn1min} != null

D-Link

Final Rule Set Result

null

The first rule is used when device context has hrProcessorTable variable. It goes through the list of processor cores and calculates an average.

The second rule, similarly, is used when device context has cpmCPUTotalTable variable.

Other rules are similar ones suitable for HP/UX, Solaris and D-Link devices.

And finally, if no suitable rules are found CPU load is deemed undefined according to the last unconditional rule.

Every rule set is executed separately, so you can call the same rule set with different parameters at the same time. In this case, they will work in parallel.

Was this page helpful?