I have two correlation rules both deisgned to provide the same output. One is based upon standard filters and works. The other uses a script condition 'count(*)>=4' and does not.
RULE WITHOUT COUNT (WORKS)
RULE WITH COUNT (DOES NOT WORK)
The rule with the count added does not seem to produce a correlated alarm. I have tried various combinations of filtering etc. Can I have some advice?
Thanks
Hi Ken,
Likely you will need to add spaces near the operator.
Instead of "count(*)>=4", it should be "count(*) >= 4".
Could you give a try and verify if this works?
Documentation source: Examples of script conditions | DataMiner Docs
Hope this helps you further.
Can this be used for example
count(*) >= 4 ! <=10
Within a single script condition, it is not possible to combine multiple conditions using ‘and’ or ‘or’.
Do see following link for more info: https://docs.dataminer.services/user-guide/Advanced_Modules/Correlation/Correlation_rule_syntax/Condition_format.html
yes Ive added those space.. and thats fine…