Skip to main content

java - Event Pattern Detection with Reaction/ECA rules on Stream of Events using AND, OR and SEQ -


i have event stream events set of attribute/value-pairs, like:
e1 = {(id, val), (attr, val), (attr, val), ... }

want detect simple patters using snoop style event algebra, namely and, or, seq, no parentheses.
example: e1 , e2 or e4 , e identifier.

now, want use event processing engine track event stream , react, in case pattern found. rules similar ruleml eca rule in example:

<rule style="active" ...> <on> e.g. e1 seq/and/or ... </on> <do> alert </do> </rule> 

these rules ought generated/parsed list. awesome, if recommend me cep engine able detect simple patterns stated above.
i've tried esper , prova (prolog + java), not manage "parse" patterns list set of rules.
highly appreciated!

does know, if drools might trick? especially, need able use and,or,seq within on/when-part of rule.

java - event pattern detection reaction/eca rules on stream of events using and, or , seq - stack overflow

learn, share, build

each month, on 50 million developers come stack overflow learn, share knowledge, , build careers.

join world’s largest developer community.

sign up

i have event stream events set of attribute/value-pairs, like:
e1 = {(id, val), (attr, val), (attr, val), ... }

want detect simple patters using snoop style event algebra, namely and, or, seq, no parentheses.
example: e1 , e2 or e4 , e identifier.

now, want use event processing engine track event stream , react, in case pattern found. rules similar ruleml eca rule in example:

<rule style="active" ...> <on> e.g. e1 seq/and/or ... </on> <do> alert </do> </rule> 

these rules ought generated/parsed list. awesome, if recommend me cep engine able detect simple patterns stated above.
i've tried esper , prova (prolog + java), not manage "parse" patterns list set of rules.
highly appreciated!

does know, if drools might trick? especially, need able use and,or,seq within on/when-part of rule.

share|improve question

your answer

 
discard

posting answer, agree privacy policy , terms of service.

browse other questions tagged or ask own question.


Comments

Popular posts from this blog

javascript - backbone.js Collection.add() doesn't `construct` (`initialize`) an object -

php - Get uncommon values from two or more arrays -

Adding duplicate array rows in Php -