Hi I am getting some events from a csv which contains the below format and would like to drop such events using transforms. null,null,0,null,null,null,null,null,null, ---- to be dropped null,null,0,null,null,null,null,null,null, ---- to be dropped null,null,0,null,null,null,null,null,null, ---- to be dropped null,null,0,null,null,null,null,null,null, ---- to be dropped null,null,0,null,null,null,null,null,null, ---- to be dropped 52376,null,0,test,87387,2984,22,abc,99 ----- to be kept Below is what i have done so far and is not working Props.conf [Reports5min] TRANSFORMS-null = setnull transforms.conf [setnull] REGEX = ^null,null\,0,null,null,null,null,null,null,$ DEST_KEY = queue FORMAT = nullQueue
... View more