Advertisement
Guest User

Sample.drl

a guest
Sep 1st, 2012
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. package com.sample
  2.  
  3. declare RawEvent
  4.     @role(event)
  5.     @timestamp(timestamp)
  6. end
  7.  
  8. rule "Detect it"
  9.     when
  10.         $start : RawEvent()
  11.         not RawEvent(this != $start, id == $start.id, $start after[0ms, 90s] this)
  12.     then
  13.         System.out.println($start);
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement